[pve-devel] [PATCH manager] ui: qemu/NetworkEdit: allow queues size up to 16
Aaron Lauterer
a.lauterer at proxmox.com
Thu May 6 17:10:24 CEST 2021
On the API/CLI side we already have a max of 16.
Signed-off-by: Aaron Lauterer <a.lauterer at proxmox.com>
---
I guess this was just something that never bothered anyone before as the
API had the limit of 16 sincei at least 2016 (commit cd9c34d1).
www/manager6/qemu/NetworkEdit.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/manager6/qemu/NetworkEdit.js b/www/manager6/qemu/NetworkEdit.js
index b39cffdc..e900c1a5 100644
--- a/www/manager6/qemu/NetworkEdit.js
+++ b/www/manager6/qemu/NetworkEdit.js
@@ -157,7 +157,7 @@ Ext.define('PVE.qemu.NetworkInputPanel', {
name: 'queues',
fieldLabel: 'Multiqueue',
minValue: 1,
- maxValue: 8,
+ maxValue: 16,
value: '',
allowBlank: true,
},
--
2.20.1
More information about the pve-devel
mailing list