diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-29 10:55:46 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-29 11:24:31 +0200 |
commit | 91a4d57d429719cbb35fe38f31e1889645a5579a (patch) | |
tree | 7e460c3f09aa69194ceb884251c7244c025f56dd /src/conf_mode/protocols_isis.py | |
parent | 31169fa8a763e36f6276632139da46b1aca3a7af (diff) | |
download | vyos-1x-91a4d57d429719cbb35fe38f31e1889645a5579a.tar.gz vyos-1x-91a4d57d429719cbb35fe38f31e1889645a5579a.zip |
isis: T3783: bugfix configuring spf-delay-ietf
Mandatory FRR options for spf-delay-ietf did not get rendered in the Jinja2
template.
Diffstat (limited to 'src/conf_mode/protocols_isis.py')
-rwxr-xr-x | src/conf_mode/protocols_isis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_isis.py b/src/conf_mode/protocols_isis.py index 4cf0312e9..4505e2496 100755 --- a/src/conf_mode/protocols_isis.py +++ b/src/conf_mode/protocols_isis.py @@ -148,7 +148,7 @@ def verify(isis): exist_timers = set(required_timers).difference(set(exist_timers)) if len(exist_timers) > 0: - raise ConfigError('All types of delay must be specified: ' + ', '.join(exist_timers).replace('_', '-')) + raise ConfigError('All types of spf-delay must be configured. Missing: ' + ', '.join(exist_timers).replace('_', '-')) # If Redistribute set, but level don't set if 'redistribute' in isis: |