diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2023-03-21 20:36:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-21 20:36:05 -0500 |
| commit | b157d367f10ca05e8e68846711c0450446892b0d (patch) | |
| tree | 72cd4d2c0d6203586bd1dffe93442483c702f1ec | |
| parent | b8ef8251db6d850a05009d4c09a321ca5d49d753 (diff) | |
| parent | a46e6f88f4bf7b51b2e96c8c2f343bd2242c4e36 (diff) | |
Merge pull request #13077 from FRRouting/mergify/bp/stable/8.5/pr-13073
staticd: Tell bfd that we are shutting down (backport #13073)
| -rw-r--r-- | staticd/static_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/staticd/static_main.c b/staticd/static_main.c index 79686158cf..da06749c2f 100644 --- a/staticd/static_main.c +++ b/staticd/static_main.c @@ -77,6 +77,9 @@ static void sigint(void) { zlog_notice("Terminating on signal"); + /* Disable BFD events to avoid wasting processing. */ + bfd_protocol_integration_set_shutdown(true); + static_vrf_terminate(); static_zebra_stop(); |
