This commit is contained in:
Joshua Boniface 2018-06-01 01:03:41 -04:00
parent 3b319fa498
commit 5afb2f7520
1 changed files with 3 additions and 1 deletions

View File

@ -78,7 +78,9 @@ def updatenodes(new_node_list):
t_node[node].updatenodelist(node_list) t_node[node].updatenodelist(node_list)
else: else:
t_node[node] = NodeInstance.NodeInstance(node, node_list, zk); t_node[node] = NodeInstance.NodeInstance(node, node_list, zk);
t_node[node].start() if node == myhostname:
t_node[node].start()
time.sleep(0.5)
node_state = t_node[node].getstate() node_state = t_node[node].getstate()
print(node_state) print(node_state)