We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75da1cc commit d53fedfCopy full SHA for d53fedf
python/vyos/frrender.py
@@ -655,7 +655,10 @@ def generate(self, config_dict) -> None:
655
for interface in read_file(static_route_dhcp_interfaces_path, '').split()
656
}
657
658
- if self.cached_config_dict == config_dict and self.cached_dhcp_gateways == dhcp_gateways:
+ if (
659
+ self.cached_config_dict == config_dict
660
+ and self.cached_dhcp_gateways == dhcp_gateways
661
+ ):
662
debug('FRR: NO CHANGES DETECTED')
663
return False
664
0 commit comments