Fixed spelling of shutdown during forceful shutdown

This commit is contained in:
Dreaded_X 2025-04-20 21:45:05 +02:00
parent 78bc46c56b
commit c65b4d725d
Signed by: Dreaded_X
GPG Key ID: 5A0CBFE3C3377FAA

View File

@ -119,7 +119,7 @@ async fn main() -> color_eyre::Result<()> {
info!("Shutdown gracefully"); info!("Shutdown gracefully");
} }
_ = shutdown_task(token.clone()) => { _ = shutdown_task(token.clone()) => {
error!("Failed to shut down gracefully"); error!("Failed to shutdown gracefully");
} }
}; };