increase timeouts

This commit is contained in:
erikkaum 2025-03-17 17:56:57 +01:00
parent febc488e0e
commit e0535a13c5

View File

@ -1189,7 +1189,7 @@ fn shard_manager(
// We received a shutdown signal
if shutdown.load(Ordering::SeqCst) {
terminate("shard", p, Duration::from_secs(90)).unwrap();
terminate("shard", p, Duration::from_secs(3600)).unwrap();
return;
}
@ -2290,7 +2290,7 @@ fn main() -> Result<(), LauncherError> {
}
// Graceful termination
terminate("webserver", webserver, Duration::from_secs(90)).unwrap();
terminate("webserver", webserver, Duration::from_secs(3600)).unwrap();
shutdown_shards(shutdown, &shutdown_receiver);
exit_code