Add comment of where to do versioning check for #5.

This commit is contained in:
Joshua Boniface 2018-06-22 12:37:45 -04:00
parent 8fc4de4093
commit 5d56da0010
1 changed files with 1 additions and 0 deletions

View File

@ -254,6 +254,7 @@ class NodeInstance():
# out-of-date while in 'start' state)
node_deadtime = int(time.time()) - ( int(self.config['keepalive_interval']) * 6 )
if node_keepalive < node_deadtime and node_daemon_state == 'run':
# CHECK VERSIONING HERE
ansiiprint.echo('Node {} seems dead - starting monitor for fencing'.format(node_name), '', 'w')
self.zk_conn.set('/nodes/{}/daemonstate'.format(node_name), 'dead'.encode('ascii'))
fence_thread = threading.Thread(target=fenceNode, args=(node_name, self.zk_conn), kwargs={})