From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 857501FF0AA for ; Mon, 07 Sep 2026 18:04:47 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id E4CFE2133B; Mon, 07 Sep 2026 18:04:45 +0200 (CEST) From: Samuel Rufinatscha To: pbs-devel@lists.proxmox.com Subject: [PATCH proxmox-backup 1/1] http: adapt to new pool_max_idle_per_host option Date: Mon, 7 Sep 2026 18:04:34 +0200 Message-ID: <20260907160434.262678-3-s.rufinatscha@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260907160434.262678-1-s.rufinatscha@proxmox.com> References: <20260907160434.262678-1-s.rufinatscha@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1788797073848 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.800 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: HSG7COZ6BOQDN3V5U4RBBL6WNQTHWAEG X-Message-ID-Hash: HSG7COZ6BOQDN3V5U4RBBL6WNQTHWAEG X-MailFrom: s.rufinatscha@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Keep the default pooling behavior for the existing PBS HTTP clients. Signed-off-by: Samuel Rufinatscha --- src/api2/node/subscription.rs | 1 + src/tools/mod.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/api2/node/subscription.rs b/src/api2/node/subscription.rs index fd796c456..e51802b6b 100644 --- a/src/api2/node/subscription.rs +++ b/src/api2/node/subscription.rs @@ -55,6 +55,7 @@ fn check_and_write_subscription(key: String, server_id: String) -> Result<(), Er proxy_config, user_agent: Some(DEFAULT_USER_AGENT_STRING.to_string()), tcp_keepalive: Some(PROXMOX_BACKUP_TCP_KEEPALIVE_TIME), + pool_max_idle_per_host: None, }); let info = proxmox_subscription::check::check_subscription( diff --git a/src/tools/mod.rs b/src/tools/mod.rs index ab624d7a6..198d45f10 100644 --- a/src/tools/mod.rs +++ b/src/tools/mod.rs @@ -31,6 +31,7 @@ pub fn pbs_simple_http(proxy_config: Option) -> Client { proxy_config, user_agent: Some(DEFAULT_USER_AGENT_STRING.to_string()), tcp_keepalive: Some(PROXMOX_BACKUP_TCP_KEEPALIVE_TIME), + pool_max_idle_per_host: None, }; Client::with_options(options) -- 2.47.3