From 5d6fe057a597a7cc6a90e8a1c188c356e08407d8 Mon Sep 17 00:00:00 2001 From: VolodymyrBg Date: Sat, 21 Feb 2026 18:32:30 +0200 Subject: [PATCH] refactor(client): remove redundant clone of `run_id` in format macro --- architectures/centralized/client/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/architectures/centralized/client/src/app.rs b/architectures/centralized/client/src/app.rs index 9a82f2ed1..aeb8542aa 100644 --- a/architectures/centralized/client/src/app.rs +++ b/architectures/centralized/client/src/app.rs @@ -115,7 +115,7 @@ pub async fn build_app( let checkpoint_config = p.checkpoint_config()?; let wandb_info = p.wandb_info(format!( "{}-{}", - p.run_id.clone(), + p.run_id, identity_secret_key.public().fmt_short() ))?;