From 949ddffc14fb18f2cd2ffb4b1352b3927854bbca Mon Sep 17 00:00:00 2001 From: ABCxFF <79597906+abcxff@users.noreply.github.com> Date: Wed, 29 Jul 2026 17:23:13 +0000 Subject: [PATCH] chore(container-runner): default stop grace to 10s --- container-runner/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-runner/src/main.rs b/container-runner/src/main.rs index 07fad243fe..b08e3e4597 100644 --- a/container-runner/src/main.rs +++ b/container-runner/src/main.rs @@ -244,7 +244,7 @@ struct Args { base_path: String, /// SIGTERM→SIGKILL grace period (seconds) when stopping the child. - #[arg(long, env = "RIVET_STOP_GRACE_SECS", default_value_t = 25)] + #[arg(long, env = "RIVET_STOP_GRACE_SECS", default_value_t = 10)] stop_grace_secs: u64, /// How long (seconds) to wait for the child's port to open before failing start.