Avoid accidental flushing of not-this-host instances

This commit is contained in:
2018-06-11 02:20:03 -04:00
parent 8447c6890b
commit 77df48060a
2 changed files with 8 additions and 6 deletions

View File

@ -161,7 +161,7 @@ def updatenodes(new_node_list):
if node in t_node:
t_node[node].updatenodelist(t_node)
else:
t_node[node] = NodeInstance.NodeInstance(node, t_node, s_domain, zk, config)
t_node[node] = NodeInstance.NodeInstance(myhostname, node, t_node, s_domain, zk, config)
@zk.ChildrenWatch('/domains')
def updatedomains(new_domain_list):