summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-08-09 13:28:54 -0500
committerGitHub <noreply@github.com>2024-08-09 13:28:54 -0500
commit44a50ed2915371f4e967cf49768e0dd827a48018 (patch)
treed49c2287901758e8ec6c7ec57b721c0f95a790b3 /src/conf_mode
parent7a4a462ef60a9e53a222d03d106fed793c33ec9e (diff)
parentd2ba8f755de1c5817ae2c70e06e55868613a0d33 (diff)
downloadvyos-1x-44a50ed2915371f4e967cf49768e0dd827a48018.tar.gz
vyos-1x-44a50ed2915371f4e967cf49768e0dd827a48018.zip
Merge pull request #3962 from vyos/mergify/bp/sagitta/pr-3960
qos: T6638: require interface state existence in verify conditional (backport #3960)
Diffstat (limited to 'src/conf_mode')
-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 8a590cbc6..a97a09ba0 100755
--- a/src/conf_mode/qos.py
+++ b/src/conf_mode/qos.py
@@ -237,7 +237,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