From a5ed7766924c2392fe066442d34d3e5579af03c2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 26 Jul 2019 20:54:52 -0400 Subject: [PATCH] Fix missing format string --- 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 b283bbd0..3480c596 100644 --- a/client-common/node.py +++ b/client-common/node.py @@ -157,7 +157,7 @@ def flush_node(zk_conn, node, wait): # Wait cannot be triggered from the API if wait: - while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate') == 'flush': + while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate'.format(node)) == 'flush': time.sleep(1) return True, retmsg