diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/qos/base.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/qos/base.py b/python/vyos/qos/base.py index afeaaee0b..717e3c214 100644 --- a/python/vyos/qos/base.py +++ b/python/vyos/qos/base.py @@ -217,7 +217,7 @@ class QoSBase:                  if 'match' in cls_config:                      for index, (match, match_config) in enumerate(cls_config['match'].items(), start=1):                          filter_cmd = filter_cmd_base -                        if self.qostype == 'shaper': +                        if self.qostype == 'shaper' and 'prio ' not in filter_cmd:                              filter_cmd += f' prio {index}'                          if 'mark' in match_config:                              mark = match_config['mark']  | 
