Skip to content

Commit

Permalink
Merge pull request #14624 from FRRouting/mergify/bp/dev/9.1/pr-14618
Browse files Browse the repository at this point in the history
watchfrr: Extend ignore option to daemon being killed (backport #14618)
  • Loading branch information
donaldsharp authored Oct 19, 2023
2 parents 433d91f + 1fe38b9 commit a0cfc4f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions watchfrr/watchfrr.c
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,9 @@ static void daemon_restarting_operational(struct event *thread)

static void daemon_down(struct daemon *dmn, const char *why)
{
if (dmn->ignore_timeout)
return;

if (IS_UP(dmn) || (dmn->state == DAEMON_INIT))
flog_err(EC_WATCHFRR_CONNECTION, "%s state -> down : %s",
dmn->name, why);
Expand Down

0 comments on commit a0cfc4f

Please sign in to comment.