Ensure migration out occurs

This commit is contained in:
2019-12-25 21:02:46 -05:00
parent 77db36a891
commit 47cf0a8006
2 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ class NodeInstance(object):
transition_thread.start()
else:
# Skip becoming secondary unless already running
if self.daemon_state == 'run' or self.daemon_state = 'shutdown':
if self.daemon_state == 'run' or self.daemon_state == 'shutdown':
self.logger.out('Setting node {} to secondary state'.format(self.name), state='i')
transition_thread = threading.Thread(target=self.become_secondary, args=(), kwargs={})
transition_thread.start()