From: Donald Sharp Date: Thu, 18 Aug 2016 17:47:08 +0000 (-0400) Subject: pimd: Change RPF cache refresh time to 2 seconds X-Git-Tag: frr-3.0-branchpoint~64^2~10^2~281 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=fa6a18f1c8111236bfc47bdd3d705cb3a530fe08;p=matthieu%2Ffrr.git 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 --- 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;