diff options
| -rw-r--r-- | src/rabbit_autoheal.erl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rabbit_autoheal.erl b/src/rabbit_autoheal.erl index 77165fc26c..b43fd672d8 100644 --- a/src/rabbit_autoheal.erl +++ b/src/rabbit_autoheal.erl @@ -381,6 +381,11 @@ restart_loser(State, Winner) -> not_healing; autoheal_safe_to_start -> State + after 60000 -> + rabbit_log:warning( + "Autoheal: Timed out waiting for autoheal_safe_to_start, + winner is ~p; Start and retry autoheal", [Winner]), + not_healing end, erlang:demonitor(MRef, [flush]), %% During the restart, the autoheal state is lost so we |
