Skip to content

Commit

Permalink
Update default GR parameter values to 300s as specified in the schema
Browse files Browse the repository at this point in the history
Change-Id: I0a413490c37284ce13059818511d3d114fdc85a2
Closes-Bug: 1741182
  • Loading branch information
ananth-at-camphor-networks committed Jan 4, 2018
1 parent e793232 commit 483cb55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config/utils/provision_control.py
Expand Up @@ -94,8 +94,8 @@ def _parse_args(self, args_str):
--oper <add | del>
--md5 <key value>|None(optional)
--local_autonomous_system <ASN value>|None(optional)
--graceful_restart_time 100
--long_lived_graceful_restart_time 100
--graceful_restart_time 300
--long_lived_graceful_restart_time 300
--end_of_rib_timeout 300
--set_graceful_restart_parameters False
--graceful_restart_bgp_helper_enable False
Expand Down Expand Up @@ -124,7 +124,7 @@ def _parse_args(self, args_str):
'admin_password': None,
'admin_tenant_name': None,
'md5' : None,
'graceful_restart_time': 60,
'graceful_restart_time': 300,
'long_lived_graceful_restart_time': 300,
'end_of_rib_timeout': 300,
'graceful_restart_bgp_helper_enable': False,
Expand Down Expand Up @@ -182,7 +182,7 @@ def _parse_args(self, args_str):
parser.add_argument(
"--graceful_restart_time",
help="Graceful Restart Time in seconds (0..4095)",
type=self.gr_time_type, default=60,
type=self.gr_time_type, default=300,
required=False)
parser.add_argument(
"--long_lived_graceful_restart_time",
Expand Down

0 comments on commit 483cb55

Please sign in to comment.