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 20F9C75315 for ; Fri, 4 Jun 2021 15:55:50 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 0A7051EA50 for ; Fri, 4 Jun 2021 15:55:20 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (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 firstgate.proxmox.com (Proxmox) with ESMTPS id DC12E1EA41 for ; Fri, 4 Jun 2021 15:55:18 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 6269F4667E for ; Fri, 4 Jun 2021 15:55:18 +0200 (CEST) Date: Fri, 4 Jun 2021 15:54:32 +0200 (CEST) From: Dietmar Maurer To: Proxmox Backup Server development discussion , Dominik Csapak Message-ID: <1669610747.49.1622814872295@webmail.proxmox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Priority: 3 Importance: Normal X-Mailer: Open-Xchange Mailer v7.10.5-Rev13 X-Originating-Client: open-xchange-appsuite X-SPAM-LEVEL: Spam detection results: 0 AWL 0.196 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: Re: [pbs-devel] [PATCH proxmox-backup v2] client/pull: log snapshots that are skipped because of time X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jun 2021 13:55:50 -0000 > +impl std::fmt::Display for SkipInfo { > + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { > + if self.count > 1 { > + write!( > + f, > + "{} snapshots ({}..{}) that are older than the newest local snapshot", > + self.count, > + proxmox::tools::time::epoch_to_rfc3339_utc(self.oldest) > + .map_err(|_| std::fmt::Error)?, > + proxmox::tools::time::epoch_to_rfc3339_utc(self.newest) > + .map_err(|_| std::fmt::Error)?, > + ) what is the purpose of this complex message (why we want to show self.oldest and self.newest)? Its confusing me more than it helps... > + } else if self.count == 1 { > + write!( > + f, > + "1 snapshot ({}) that is older than the newest local snapshot", > + proxmox::tools::time::epoch_to_rfc3339_utc(self.oldest) > + .map_err(|_| std::fmt::Error)?, > + ) do we really need this special case? > + } else { > + write!(f, "0 snapshots") Instead, I would avoid to call this function if count is 0 ... > + } > + } > +} > + > pub async fn pull_group(