Don't stupidly try to flush other nodes

This commit is contained in:
Joshua Boniface 2018-06-13 12:08:11 -04:00
parent 7bb72dc732
commit a31a53c829
1 changed files with 5 additions and 4 deletions

View File

@ -60,10 +60,11 @@ class NodeInstance():
self.domain_state = 'unknown'
# toggle state management of this node
if self.domain_state == 'flush' and self.inflush == False:
self.flush()
if self.domain_state == 'unflush' and self.inflush == False:
self.unflush()
if self.name == self.this_node:
if self.domain_state == 'flush' and self.inflush == False:
self.flush()
if self.domain_state == 'unflush' and self.inflush == False:
self.unflush()
@zk.DataWatch('/nodes/{}/memfree'.format(self.name))