From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id AE1771FF17C for ; Wed, 20 Aug 2025 14:42:06 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id DC81FA767; Wed, 20 Aug 2025 14:43:48 +0200 (CEST) From: Lukas Wagner To: pdm-devel@lists.proxmox.com Date: Wed, 20 Aug 2025 14:43:28 +0200 Message-ID: <20250820124329.220124-7-l.wagner@proxmox.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250820124329.220124-1-l.wagner@proxmox.com> References: <20250820124329.220124-1-l.wagner@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1755693780652 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.023 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy 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: [pdm-devel] [PATCH proxmox-datacenter-manager v7 6/7] remote tasks: task cache: create `active` file in init X-BeenThere: pdm-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Datacenter Manager development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pdm-devel-bounces@lists.proxmox.com Sender: "pdm-devel" This avoids a 'could not create task archive iterator' error before the first round of task fetching. Signed-off-by: Lukas Wagner --- Notes: New in v7 server/src/remote_tasks/task_cache.rs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/server/src/remote_tasks/task_cache.rs b/server/src/remote_tasks/task_cache.rs index 9e6a65cd..1afeaee4 100644 --- a/server/src/remote_tasks/task_cache.rs +++ b/server/src/remote_tasks/task_cache.rs @@ -214,11 +214,24 @@ impl ReadableTaskCache { } impl WritableTaskCache { - /// Create initial task archives that can be backfilled with the + /// Create initial task archive files that can be backfilled with the /// recent task history from a remote. /// /// This function only has an effect if there are no archive files yet. pub fn init(&self, now: i64) -> Result<(), Error> { + let active_filename = self.cache.base_path.join(ACTIVE_FILENAME); + + if !active_filename.exists() { + let mut file = OpenOptions::new() + .create(true) + .write(true) + .open(&active_filename)?; + + self.cache + .create_options + .apply_to(&mut file, &active_filename)?; + } + if self.cache.archive_files(&self.lock)?.is_empty() { for i in 0..self.cache.max_files { self.new_file( -- 2.47.2 _______________________________________________ pdm-devel mailing list pdm-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel