diff options
author | Christian Poessinger <christian@poessinger.com> | 2023-01-04 19:35:33 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2023-01-04 19:35:33 +0100 |
commit | bb97f80d358adea1dbf7eaff5d413ccfb95b0441 (patch) | |
tree | ee0e738cfcbba718892ea90e33790fc3947ca07a /interface-definitions/qos.xml.in | |
parent | 5867d21077d605f1246459881addffa72ef538ff (diff) | |
download | vyos-1x-bb97f80d358adea1dbf7eaff5d413ccfb95b0441.tar.gz vyos-1x-bb97f80d358adea1dbf7eaff5d413ccfb95b0441.zip |
qos: T4284: bugfix fair-queue queue-limit range
Diffstat (limited to 'interface-definitions/qos.xml.in')
-rw-r--r-- | interface-definitions/qos.xml.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interface-definitions/qos.xml.in b/interface-definitions/qos.xml.in index 36190949e..8809369ff 100644 --- a/interface-definitions/qos.xml.in +++ b/interface-definitions/qos.xml.in @@ -201,13 +201,13 @@ <properties> <help>Upper limit of the SFQ</help> <valueHelp> - <format>u32:2-127</format> + <format>u32:1-127</format> <description>Queue size in packets</description> </valueHelp> <constraint> - <validator name="numeric" argument="--range 2-127"/> + <validator name="numeric" argument="--range 1-127"/> </constraint> - <constraintErrorMessage>Queue limit must greater than 1 and less than 128</constraintErrorMessage> + <constraintErrorMessage>Queue limit must be in range 1 to 127</constraintErrorMessage> </properties> <defaultValue>127</defaultValue> </leafNode> |