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 <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2016-08-18 13:47:08 -04:00
parent 01408ede34
commit fa6a18f1c8

View File

@ -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;