diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-11-02 09:28:42 +0100 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2025-11-03 21:09:14 +0100 |
| commit | f61656f9a0010498b1778c43a599862e84250b7d (patch) | |
| tree | dbbfbe3ac5dbaabb26530c1406e54339a13ced4c /python | |
| parent | e1b7b865a63454ae4b8f840c94ab599633faaf7f (diff) | |
| download | vyos-1x-f61656f9a0010498b1778c43a599862e84250b7d.tar.gz vyos-1x-f61656f9a0010498b1778c43a599862e84250b7d.zip | |
vyos.ifconfig: T7305: set_vrf() should call get_vrf() helper
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 761ba1799..ad634c4d7 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -619,7 +619,7 @@ class Interface(Control): if 'netns' in self.config: return False - tmp = self.get_interface('vrf') + tmp = self.get_vrf() if tmp == vrf: return False |
