Set proper variable name

This commit is contained in:
Joshua Boniface 2018-07-17 01:53:25 -04:00
parent c517847c54
commit eb44381651
1 changed files with 1 additions and 1 deletions

2
pvc.py
View File

@ -411,7 +411,7 @@ def flush_host(node, wait):
if wait == True:
while True:
time.sleep(1)
node_state = zk_conn.get('/nodes/{}/state'.format(node_name))[0].decode('ascii')
node_state = zk_conn.get('/nodes/{}/state'.format(node))[0].decode('ascii')
if node_state == "flushed":
break