Fix missing list comma
This commit is contained in:
parent
f0dc0fc782
commit
719954b70b
|
@ -697,7 +697,7 @@ class NodeInstance(object):
|
||||||
if target_node is None:
|
if target_node is None:
|
||||||
self.logger.out('Failed to find migration target for VM "{}"; shutting down and setting autostart flag'.format(dom_uuid), state='e')
|
self.logger.out('Failed to find migration target for VM "{}"; shutting down and setting autostart flag'.format(dom_uuid), state='e')
|
||||||
self.zkhandler.write([
|
self.zkhandler.write([
|
||||||
('/domains/{}/state'.format(dom_uuid), 'shutdown')
|
('/domains/{}/state'.format(dom_uuid), 'shutdown'),
|
||||||
('/domains/{}/node_autostart'.format(dom_uuid), 'True')
|
('/domains/{}/node_autostart'.format(dom_uuid), 'True')
|
||||||
])
|
])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue