summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-08-08 11:24:00 -0500
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-08-09 08:43:36 +0000
commitd9c9c48a0993524fa6443e317e5046e0e01d7641 (patch)
tree2dfddec7aefb1245c15588d03031b92bae8f7469 /src
parentc0ce26f995e48e29050791a6adb4bc09a2630201 (diff)
downloadvyos-1x-d9c9c48a0993524fa6443e317e5046e0e01d7641.tar.gz
vyos-1x-d9c9c48a0993524fa6443e317e5046e0e01d7641.zip
qos: T6638: require interface state existence in verify conditionalmergify/bp/circinus/pr-3960
(cherry picked from commit ed63c9d1896a218715e13e1799fc059f4561f75e)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/qos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/qos.py b/src/conf_mode/qos.py
index 45248fb4a..464d7c192 100755
--- a/src/conf_mode/qos.py
+++ b/src/conf_mode/qos.py
@@ -303,7 +303,7 @@ def apply(qos):
return None
for interface, interface_config in qos['interface'].items():
- if not verify_interface_exists(interface, warning_only=True):
+ if not verify_interface_exists(interface, state_required=True, warning_only=True):
# When shaper is bound to a dialup (e.g. PPPoE) interface it is
# possible that it is yet not availbale when to QoS code runs.
# Skip the configuration and inform the user via warning_only=True