From c1d309f21f5b0a43caa50745bed4d358b6bda15d Mon Sep 17 00:00:00 2001 From: archipelago Date: Mon, 20 Jul 2026 02:28:49 -0400 Subject: [PATCH] style: cargo fmt crash_recovery.rs Co-Authored-By: Claude Fable 5 --- core/archipelago/src/crash_recovery.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/core/archipelago/src/crash_recovery.rs b/core/archipelago/src/crash_recovery.rs index ed06738b..e52eb01f 100644 --- a/core/archipelago/src/crash_recovery.rs +++ b/core/archipelago/src/crash_recovery.rs @@ -487,9 +487,12 @@ pub async fn recover_containers(containers: &[RunningContainerRecord]) -> Recove /// All container names podman knows about (running or not). `None` if the /// query fails — callers fail open and attempt every snapshot entry. async fn existing_container_names() -> Option> { - let output = podman_output(&["ps", "-a", "--format", "{{.Names}}"], Duration::from_secs(30)) - .await - .ok()?; + let output = podman_output( + &["ps", "-a", "--format", "{{.Names}}"], + Duration::from_secs(30), + ) + .await + .ok()?; if !output.status.success() { return None; }