diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-11-28 17:03:01 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-11-28 17:03:09 +0100 |
commit | 5b0ed7fda69db3e4a80892dd21e97c0368193da5 (patch) | |
tree | 153dff2287e0557739f91965793fa033fc26231b | |
parent | 9a69e68b0f0affeac8aeab66783ae0249d67373f (diff) | |
download | vyos-1x-5b0ed7fda69db3e4a80892dd21e97c0368193da5.tar.gz vyos-1x-5b0ed7fda69db3e4a80892dd21e97c0368193da5.zip |
frr: T3753: extend ConfigurationNotValid() with failing daemon
-rw-r--r-- | python/vyos/frr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/frr.py b/python/vyos/frr.py index 0ffd5cba9..ccb132dd5 100644 --- a/python/vyos/frr.py +++ b/python/vyos/frr.py @@ -477,7 +477,7 @@ class FRRConfig: # for the listed FRR issues above pass if count >= count_max: - raise ConfigurationNotValid(f'Config commit retry counter ({count_max}) exceeded') + raise ConfigurationNotValid(f'Config commit retry counter ({count_max}) exceeded for {daemon} dameon!') # Save configuration to /run/frr/config/frr.conf save_configuration() |