Fix missing format string
This commit is contained in:
parent
68ca493b3b
commit
a5ed776692
|
@ -157,7 +157,7 @@ def flush_node(zk_conn, node, wait):
|
||||||
|
|
||||||
# Wait cannot be triggered from the API
|
# Wait cannot be triggered from the API
|
||||||
if wait:
|
if wait:
|
||||||
while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate') == 'flush':
|
while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate'.format(node)) == 'flush':
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
return True, retmsg
|
return True, retmsg
|
||||||
|
|
Loading…
Reference in New Issue