diff options
| author | Christian Breunig <christian@breunig.cc> | 2024-08-26 07:23:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-26 07:23:59 +0200 |
| commit | 42191a8f6a4efc248e973c1bc3a974474835b15e (patch) | |
| tree | 80fa64b91d8a3dcf16e286178433232be5b4f46c /python/vyos/xml_ref/__init__.py | |
| parent | da64a7246e9b12d5bd84287517cfbfa59e364c28 (diff) | |
| parent | 9ff620c50625c81733020f399c7f5a14e07c4d09 (diff) | |
| download | veeos-1x-42191a8f6a4efc248e973c1bc3a974474835b15e.tar.gz veeos-1x-42191a8f6a4efc248e973c1bc3a974474835b15e.zip | |
Merge pull request #4015 from jestabro/configdep-prio
T6671: defer config dependency if scheduled in priority queue
Diffstat (limited to 'python/vyos/xml_ref/__init__.py')
| -rw-r--r-- | python/vyos/xml_ref/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/vyos/xml_ref/__init__.py b/python/vyos/xml_ref/__init__.py index 91ce394f7..99d8432d2 100644 --- a/python/vyos/xml_ref/__init__.py +++ b/python/vyos/xml_ref/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2024 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -54,8 +54,8 @@ def is_valueless(path: list) -> bool: def is_leaf(path: list) -> bool: return load_reference().is_leaf(path) -def owner(path: list) -> str: - return load_reference().owner(path) +def owner(path: list, with_tag=False) -> str: + return load_reference().owner(path, with_tag=with_tag) def priority(path: list) -> str: return load_reference().priority(path) |
