mirror of
https://github.com/xcat2/confluent.git
synced 2025-08-24 12:10:26 +00:00
Fix for incorrect uuid format
In the slp data, the data is an array, make it a string first.
This commit is contained in:
@@ -32,7 +32,7 @@ class NodeHandler(bmchandler.NodeHandler):
|
||||
# ipmi return and property value
|
||||
uuid = self.info.get('attributes', {}).get('uuid', None)
|
||||
if uuid:
|
||||
uuid = fixuuid(uuid)
|
||||
uuid = fixuuid(uuid[0])
|
||||
self.info['uuid'] = uuid
|
||||
|
||||
def config(self, nodename):
|
||||
|
Reference in New Issue
Block a user