2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-26 03:19:48 +00:00

Fix TSM to lower case uuid for discovery

TSM were inconsistent by presenting
all caps UUID sometimes.
This commit is contained in:
Jarrod Johnson 2022-01-05 12:50:31 -05:00
parent 6f272b9d50
commit 8da513b152

View File

@ -50,7 +50,7 @@ class NodeHandler(generic.NodeHandler):
i = c.grab_json_response('/redfish/v1/')
uuid = i.get('UUID', None)
if uuid:
self.info['uuid'] = uuid
self.info['uuid'] = uuid.lower()
def validate_cert(self, certificate):
# broadly speaking, merely checks consistency moment to moment,