From d675e8435721c9d648b15d58c86fc06f064cf8bd Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 19 Oct 2025 15:42:13 -0300 Subject: [PATCH] Add await to bootstrap start_all call Fixes the asynchronous bootstrap process by properly awaiting the start_all method, ensuring all services are started before proceeding. --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index eb1144fe7..c80a3e04f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -104,6 +104,7 @@ async fn main() -> std::io::Result<()> { }; let mut bootstrap = BootstrapManager::new(install_mode.clone(), tenant.clone()); + let _ = bootstrap.start_all(); let cfg = match bootstrap.bootstrap() { Ok(config) => { info!("Bootstrap completed successfully, configuration loaded from database");