diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-07-26 10:02:21 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-07-26 10:02:21 -0400 | 
| commit | 53dc1b16aa506f0351d34196821818ff6c9a33d1 (patch) | |
| tree | b9372ef3331857136436bd3c27fd5a5ec9d345c7 /yang | |
| parent | 53d7080980bb4e3bf6ef053673ebc560c5412103 (diff) | |
pimd: Allow join prune intervals to be as small as 5 seconds
Allow the join-prune interval to be as small as 5 seconds instead
of limiting the value to 60.
This can and will come at a price of being able to converge less
mroutes.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'yang')
| -rw-r--r-- | yang/frr-pim.yang | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/yang/frr-pim.yang b/yang/frr-pim.yang index f73776c1af..e846ffa1f8 100644 --- a/yang/frr-pim.yang +++ b/yang/frr-pim.yang @@ -529,7 +529,7 @@ module frr-pim {      }      leaf join-prune-interval {        type uint16 { -        range "60..600"; +        range "5..600";        }        default "60";        description  | 
