Remove redundant ensure_services_running() call - start_all() handles it

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-12-29 08:41:42 -03:00
parent 0e7b4b66ec
commit 6a41cbcc10

View file

@ -550,11 +550,6 @@ async fn main() -> std::io::Result<()> {
)) ))
.ok(); .ok();
trace!("Calling bootstrap.start_all()..."); 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)?; bootstrap.start_all().await.map_err(std::io::Error::other)?;
trace!("bootstrap.start_all() completed"); trace!("bootstrap.start_all() completed");