diff options
| author | Daniil Baturin <daniil@vyos.io> | 2026-03-16 12:45:45 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-16 12:45:45 +0000 |
| commit | 6e2606008e156758bbc8dc0f62290a84ba5507cd (patch) | |
| tree | b2064de1379d1eb626cc8ac0587a3e83364f43f1 /python | |
| parent | 1794edfedf8eee1aa2334c854ca8335413f1b38a (diff) | |
| parent | b05dbc34eba7bc44a86afdf576407b9cf7f5046c (diff) | |
| download | vyos-1x-6e2606008e156758bbc8dc0f62290a84ba5507cd.tar.gz vyos-1x-6e2606008e156758bbc8dc0f62290a84ba5507cd.zip | |
Merge pull request #5055 from alexk37/fix-bridge-stp-cost
T8388: bridge STP: 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() |
