🤖 fix: destroy stdio streams on timeout to prevent Windows hanging#2785
Merged
ibetitsmike merged 3 commits intomainfrom Mar 5, 2026
Merged
🤖 fix: destroy stdio streams on timeout to prevent Windows hanging#2785ibetitsmike merged 3 commits intomainfrom
ibetitsmike merged 3 commits intomainfrom
Conversation
Contributor
Author
|
@codex review |
|
Codex Review: Didn't find any major issues. 🎉 ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix bash tool timeout hanging on Windows by destroying stdio streams in the
DisposableProcesscleanup callback, ensuring Web ReadableStream readers see EOF after process kill.Background
On Windows, when timeout fires and
taskkill /PID /T /Fkills the process tree, Node.js stdio pipe handles don't always close. This causesreader.read()inconsumeStream()to hang indefinitely, sincePromise.all([exitCode, consumeStdout, consumeStderr])inbash.tswaits for all three. Manual abort works because it explicitly cancels stream readers — timeout had no such mechanism.Implementation
LocalBaseRuntime.ts/DevcontainerRuntime.ts: In thedisposable.addCleanup()callback (runs only on timeout/abort, not normal exit), after killing the process tree, queue EOF on stdout/stderr viapush(null)then destroy all stdio streams insetImmediate. The two-phase approach (EOF then destroy) avoidsABORT_ERRrejections fromReadable.toWeb()while still forcing handle teardown.bashExecutionService.ts: Confirmed dead code (nothing imports it). Had a separateDisposableProcesswith Unix-onlyprocess.kill(-pid, "SIGKILL")— removed entirely rather than patching.Risks
Low. The cleanup callback only fires on explicit
dispose()(timeout/abort path), never on normal process exit. Buffered output from successful commands is unaffected.Generated with
mux• Model:anthropic:claude-opus-4-6• Thinking:xhigh• Cost:$4.20