From 6a41cbcc106b8ac947e15c9cc7997ed2cb4b7a59 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Mon, 29 Dec 2025 08:41:42 -0300 Subject: [PATCH] Remove redundant ensure_services_running() call - start_all() handles it --- src/main.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index c2f78d1a0..9bb405b68 100644 --- a/src/main.rs +++ b/src/main.rs @@ -550,11 +550,6 @@ async fn main() -> std::io::Result<()> { )) .ok(); trace!("Calling bootstrap.start_all()..."); - - if let Err(e) = bootstrap.ensure_services_running().await { - warn!("Some services might not be running: {}", e); - } - bootstrap.start_all().await.map_err(std::io::Error::other)?; trace!("bootstrap.start_all() completed");