From 32cfb544e929d4f65b530887aa8ecdf774488eb8 Mon Sep 17 00:00:00 2001 From: Karen Schoener Date: Thu, 3 Dec 2020 11:23:59 -0500 Subject: [PATCH] isisd, ospfd: increase timeout to fix intermittent LDP Sync test failure Currently, IGPs are coded to receive a 'hello' message from LDP every second. Intermittently, LDP Sync topotests are failing because the IGPs fail to receive this 'hello' message every second. When the LDP Sync topotests fail, LDP logs show that LDP is processing zapi messages for 1-2 seconds. This is a shortterm fix, in order to prevent CI pipeline failures. The longterm fix is in progress. Signed-off-by: Karen Schoener --- lib/ldp_sync.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ldp_sync.h b/lib/ldp_sync.h index daede566f0..73e3dac3d8 100644 --- a/lib/ldp_sync.h +++ b/lib/ldp_sync.h @@ -39,7 +39,7 @@ extern "C" { #define LDP_IGP_SYNC_HOLDDOWN_DEFAULT 0 -#define LDP_IGP_SYNC_HELLO_TIMEOUT 1 +#define LDP_IGP_SYNC_HELLO_TIMEOUT 5 /* LDP-IGP Sync structures */ struct ldp_sync_info_cmd { -- 2.39.5