Remove superflous old comment

This commit is contained in:
Joshua Boniface 2018-07-17 00:16:58 -04:00
parent 35a6154d34
commit 368c7ea99b
1 changed files with 0 additions and 1 deletions

View File

@ -257,7 +257,6 @@ class NodeInstance():
# out-of-date while in 'start' state)
node_deadtime = int(time.time()) - ( int(self.config['keepalive_interval']) * int(self.config['fence_intervals']) )
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')
zkhandler.writedata(self.zk_conn, { '/nodes/{}/daemonstate'.format(node_name): 'dead' })
fence_thread = threading.Thread(target=fenceNode, args=(node_name, self.zk_conn, self.config), kwargs={})