From 47b68e4258fa5c2b1ba9fd594a80c58f67a30a01 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 22 Jan 2020 15:04:43 -0500 Subject: [PATCH] Fix dispatch of redfish and tsmsol redfish and tsmsol was not properly marked as needing dispatch. --- confluent_server/confluent/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/core.py b/confluent_server/confluent/core.py index 575d2e19..17e47e7b 100644 --- a/confluent_server/confluent/core.py +++ b/confluent_server/confluent/core.py @@ -72,7 +72,7 @@ import struct import sys pluginmap = {} -dispatch_plugins = (b'ipmi', u'ipmi') +dispatch_plugins = (b'ipmi', u'ipmi', b'redfish', u'redfish', b'tsmsol', u'tsmsol') def seek_element(currplace, currkey):