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:
parent
6f272b9d50
commit
8da513b152
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user