From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id EF9D462D1A for ; Sun, 23 Aug 2020 13:48:24 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id EAA451656C for ; Sun, 23 Aug 2020 13:47:54 +0200 (CEST) Received: from howl.hachimitsu.nl (D9641AC2.static.ziggozakelijk.nl [217.100.26.194]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5EB0A16548 for ; Sun, 23 Aug 2020 13:47:53 +0200 (CEST) Received: by howl.hachimitsu.nl (Postfix, from userid 1000) id 3C37A609D4; Sun, 23 Aug 2020 13:38:31 +0200 (CEST) From: Stephan Leemburg To: pve-devel@lists.proxmox.com Cc: Stephan Leemburg Date: Sun, 23 Aug 2020 13:38:28 +0200 Message-Id: <20200823113828.95261-2-stephan.leemburg@it-functions.nl> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200823113828.95261-1-stephan.leemburg@it-functions.nl> References: <20200823113828.95261-1-stephan.leemburg@it-functions.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 2 AWL -0.167 Adjusted score from AWL reputation of From: address HEADER_FROM_DIFFERENT_DOMAINS 0.249 From and EnvelopeFrom 2nd level mail domains are different KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods KAM_NUMSUBJECT 0.5 Subject ends in numbers excluding current years KHOP_HELO_FCRDNS 0.399 Relay HELO differs from its IP's reverse DNS NO_DNS_FOR_FROM 0.379 Envelope sender has no MX or A DNS records SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record X-Mailman-Approved-At: Mon, 24 Aug 2020 10:12:10 +0200 Subject: [pve-devel] [Bump maximum number of container net interfaces from 10 to 32 1/1] Bump maximum number of container net interfaces from 10 to 32 X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Aug 2020 11:48:25 -0000 Signed-off-by: Stephan Leemburg --- www/manager6/lxc/Network.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/lxc/Network.js b/www/manager6/lxc/Network.js index 2938c503..8af00fca 100644 --- a/www/manager6/lxc/Network.js +++ b/www/manager6/lxc/Network.js @@ -74,7 +74,7 @@ Ext.define('PVE.lxc.NetworkInputPanel', { } var i; - for (i = 0; i < 10; i++) { + for (i = 0; i < 32; i++) { if (me.isCreate && !me.dataCache['net'+i.toString()]) { me.ifname = 'net' + i.toString(); break; @@ -370,7 +370,7 @@ Ext.define('PVE.lxc.NetworkView', { records.push(net); }); me.store.loadData(records); - me.down('button[name=addButton]').setDisabled((records.length >= 10)); + me.down('button[name=addButton]').setDisabled((records.length >= 32)); } }); }, -- 2.25.1