diff options
author | John Estabrook <jestabro@vyos.io> | 2025-05-30 11:53:08 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-05-30 14:22:02 -0500 |
commit | 712c10a3f3715c563d8646113ab2cc1f011529ed (patch) | |
tree | 4fb96844b2533373a9b5aff292b09085df09cb6e | |
parent | 08dc2e56bf4ad487709ec3849fe97ec24d5b35fe (diff) | |
download | vyos-1x-712c10a3f3715c563d8646113ab2cc1f011529ed.tar.gz vyos-1x-712c10a3f3715c563d8646113ab2cc1f011529ed.zip |
config-mgmt: T7508: use recursive defaults to read commit-confirm action
-rw-r--r-- | python/vyos/config_mgmt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/config_mgmt.py b/python/vyos/config_mgmt.py index 308eb1cdb..186fdd223 100644 --- a/python/vyos/config_mgmt.py +++ b/python/vyos/config_mgmt.py @@ -144,7 +144,7 @@ class ConfigMgmt: ['system', 'config-management'], key_mangling=('-', '_'), get_first_key=True, - with_defaults=True, + with_recursive_defaults=True, ) self.max_revisions = int(d.get('commit_revisions', 0)) |