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 B4DB61FF0B3 for ; Thu, 10 Sep 2026 12:25:41 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 8EFAC21618; Thu, 10 Sep 2026 12:25:40 +0200 (CEST) From: Robert Obkircher To: pbs-devel@lists.proxmox.com Subject: [PATCH v1 proxmox] s3-client: suggest correct replacement for put-rate-limit Date: Thu, 10 Sep 2026 12:24:50 +0200 Message-ID: <20260910102509.121150-1-r.obkircher@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1789035927833 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.542 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: Y5HHB2NVEAQPMI7MMG4VTTZ7PCJNSJOB X-Message-ID-Hash: Y5HHB2NVEAQPMI7MMG4VTTZ7PCJNSJOB X-MailFrom: r.obkircher@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: This is shown by `proxmox-backup-manager s3 endpoint update --help`. Signed-off-by: Robert Obkircher --- proxmox-s3-client/src/api_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-s3-client/src/api_types.rs b/proxmox-s3-client/src/api_types.rs index 7b0ee094..0364fb55 100644 --- a/proxmox-s3-client/src/api_types.rs +++ b/proxmox-s3-client/src/api_types.rs @@ -172,7 +172,7 @@ pub struct S3ClientConfig { /// Use path style bucket addressing over vhost style. #[serde(skip_serializing_if = "Option::is_none")] pub path_style: Option, - /// Rate limit for put requests given as #request/s (deprecated: use active-rate-limit instead). + /// Rate limit for put requests given as #request/s (deprecated: use limit-active-requests instead). #[serde(skip_serializing_if = "Option::is_none")] pub put_rate_limit: Option, /// List of provider specific feature implementation quirks. -- 2.47.3