diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-02-08 16:16:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 16:16:26 +0000 |
commit | 722cb374db023766d240876b5464712d93570511 (patch) | |
tree | 156140ca8cae00e0d268d04d1529be7bc75b72e7 /src/conf_mode/qos.py | |
parent | 632c9d9f3d52e2c9571018553b5b45d9a3fe6ffd (diff) | |
parent | 6dcb68ba5553ac94eb3a9da4a915999500b00ab2 (diff) | |
download | vyos-1x-722cb374db023766d240876b5464712d93570511.tar.gz vyos-1x-722cb374db023766d240876b5464712d93570511.zip |
Merge pull request #2969 from sever-sever/T6026
T6026: QoS hide attempts to delete qdisc from devices
Diffstat (limited to 'src/conf_mode/qos.py')
-rwxr-xr-x | src/conf_mode/qos.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conf_mode/qos.py b/src/conf_mode/qos.py index 40d7a6c16..4a0b4d0c5 100755 --- a/src/conf_mode/qos.py +++ b/src/conf_mode/qos.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2023 VyOS maintainers and contributors +# Copyright (C) 2023-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -36,7 +36,7 @@ from vyos.qos import RateLimiter from vyos.qos import RoundRobin from vyos.qos import TrafficShaper from vyos.qos import TrafficShaperHFSC -from vyos.utils.process import call +from vyos.utils.process import run from vyos.utils.dict import dict_search_recursive from vyos import ConfigError from vyos import airbag @@ -205,8 +205,8 @@ def apply(qos): # Always delete "old" shapers first for interface in interfaces(): # Ignore errors (may have no qdisc) - call(f'tc qdisc del dev {interface} parent ffff:') - call(f'tc qdisc del dev {interface} root') + run(f'tc qdisc del dev {interface} parent ffff:') + run(f'tc qdisc del dev {interface} root') call_dependents() |