From fa6a18f1c8111236bfc47bdd3d705cb3a530fe08 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 18 Aug 2016 13:47:08 -0400 Subject: [PATCH] pimd: Change RPF cache refresh time to 2 seconds 10 second delay is a bit too long. Let's crank it down a bit and see what happens. Signed-off-by: Donald Sharp --- pimd/pimd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pimd/pimd.c b/pimd/pimd.c index 7600637d91..c00baa3596 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -54,7 +54,7 @@ int qpim_t_periodic = PIM_DEFAULT_T_PERIODIC; /* Period be struct list *qpim_upstream_list = NULL; struct zclient *qpim_zclient_update = NULL; struct pim_assert_metric qpim_infinite_assert_metric; -long qpim_rpf_cache_refresh_delay_msec = 10000; +long qpim_rpf_cache_refresh_delay_msec = 2000; struct thread *qpim_rpf_cache_refresher = NULL; int64_t qpim_rpf_cache_refresh_requests = 0; int64_t qpim_rpf_cache_refresh_events = 0; -- 2.39.5