From e2f153c3b19a79080b9cd713ab62f3615cb5aa70 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 26 Jul 2019 23:28:57 -0400 Subject: [PATCH] Fix the same bug in a different place --- client-common/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-common/node.py b/client-common/node.py index 3480c596..68d2af9a 100644 --- a/client-common/node.py +++ b/client-common/node.py @@ -176,7 +176,7 @@ def ready_node(zk_conn, node, wait): # Wait cannot be triggered from the API if wait: - while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate') == 'unflush': + while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate'.format(node)) == 'unflush': time.sleep(1) return True, retmsg