Fix bug in handling VM-VC-UUID
This commit is contained in:
parent
a4c2934d50
commit
d29b44bdf3
@ -107,7 +107,7 @@ class VspcServer(object):
|
|||||||
|
|
||||||
def handle_vm_vc_uuid(self, socket, data):
|
def handle_vm_vc_uuid(self, socket, data):
|
||||||
peer = socket.getpeername()
|
peer = socket.getpeername()
|
||||||
uuid = data[2:].decode('ascii')
|
uuid = data.decode('ascii')
|
||||||
LOG.debug("<< %s VM-VC-UUID %s", peer, uuid)
|
LOG.debug("<< %s VM-VC-UUID %s", peer, uuid)
|
||||||
uuid = uuid.replace(' ', '')
|
uuid = uuid.replace(' ', '')
|
||||||
self.sock_to_uuid[socket] = uuid
|
self.sock_to_uuid[socket] = uuid
|
||||||
|
Loading…
Reference in New Issue
Block a user