From abb018383f395553bf67992759fd214b5c0c435a Mon Sep 17 00:00:00 2001 From: Charley Cunningham Date: Thu, 19 Feb 2026 11:04:45 -0800 Subject: [PATCH] Undo stack size Bazel test hack (#12258) Undo hack from https://github.com/openai/codex/pull/12203/changes --- codex-rs/app-server/tests/common/mcp_process.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/codex-rs/app-server/tests/common/mcp_process.rs b/codex-rs/app-server/tests/common/mcp_process.rs index 2677c53d8..eac38e145 100644 --- a/codex-rs/app-server/tests/common/mcp_process.rs +++ b/codex-rs/app-server/tests/common/mcp_process.rs @@ -105,10 +105,6 @@ impl McpProcess { cmd.stderr(Stdio::piped()); cmd.env("CODEX_HOME", codex_home); cmd.env("RUST_LOG", "debug"); - // Bazel/Linux workers can run with smaller default thread stacks, which makes - // tokio-runtime-worker stack overflows more likely in app-server integration tests. - // Pin a larger minimum stack for the spawned test server process. - cmd.env("RUST_MIN_STACK", "4194304"); cmd.env_remove(CODEX_INTERNAL_ORIGINATOR_OVERRIDE_ENV_VAR); for (k, v) in env_overrides {