Skip to content

Commit

Permalink
om node wait optmization
Browse files Browse the repository at this point in the history
Restore the daemon status patching after recovering from a broken
patch chain.
  • Loading branch information
cvaroqui committed Jul 15, 2019
1 parent 3ec511e commit 56dae82
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/node.py
Expand Up @@ -3458,8 +3458,10 @@ def alarm_handler(signum, frame):
last_patch_id = patch["id"]
except Exception:
cluster_data = self._daemon_status()
last_patch_id = patch["id"]
else:
cluster_data = self._daemon_status()
last_patch_id = patch["id"]
try:
cluster_data["monitor"]
except KeyError:
Expand Down

0 comments on commit 56dae82

Please sign in to comment.