diff options
| author | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2026-03-16 15:48:31 +0700 |
|---|---|---|
| committer | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2026-03-16 15:48:31 +0700 |
| commit | b05dbc34eba7bc44a86afdf576407b9cf7f5046c (patch) | |
| tree | d48f1c77e0e2137e5574609238690746046883ee /python | |
| parent | 433f5aea24b415682318bb491f67d35eb03eac75 (diff) | |
| download | vyos-1x-b05dbc34eba7bc44a86afdf576407b9cf7f5046c.tar.gz vyos-1x-b05dbc34eba7bc44a86afdf576407b9cf7f5046c.zip | |
T8388: fix set path priority call
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/ifconfig/interface.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index a416de1ab..c49f497fc 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -1456,7 +1456,7 @@ class Interface(Control): # set bridge port path priority if 'priority' in bridge_config: - self.set_path_cost(bridge_config['priority']) + self.set_path_priority(bridge_config['priority']) bridge_vlan_filter = Section.klass(bridge)(bridge, create=True).get_vlan_filter() |
