chore: full stack stability and migration fixes, plus react UI progress
Some checks failed
CI / podman-build (push) Has been cancelled
CI / rust (push) Has been cancelled

This commit is contained in:
2026-03-18 09:01:38 +02:00
parent 38cab8c246
commit a66d908eff
142 changed files with 12210 additions and 3402 deletions

View File

@@ -30,7 +30,15 @@ async fn main() -> anyhow::Result<()> {
let listener = tokio::net::TcpListener::bind("0.0.0.0:8001").await?;
tracing::info!("Control Plane API listening on http://0.0.0.0:8001");
axum::serve(listener, app).await?;
let shutdown = async {
tokio::signal::ctrl_c().await.ok();
tracing::info!("Shutdown signal received, draining control plane connections...");
};
axum::serve(listener, app)
.with_graceful_shutdown(shutdown)
.await?;
tracing::info!("Control Plane shut down cleanly.");
Ok(())
}