fix: process leaks in extensionHostConnection#319223
Open
SimonSiefke wants to merge 3 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates extension host socket disposal to perform a graceful shutdown rather than an immediate destroy, aiming to reduce abrupt termination during cleanup.
Changes:
- Replace
extHostSocket.destroy()with a conditionalextHostSocket.end()on dispose. - Add guards to avoid ending an already-destroyed or already-ended socket.
Comment on lines
+166
to
+168
| if (!extHostSocket.destroyed && !extHostSocket.writableEnded) { | ||
| extHostSocket.end(); | ||
| } |
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.
Fixes #211462.
Details
When the connection closes, the extension host sends a disconnect message, and then closes the socket. The remote agent host, receives the disconnect message, starts its graceful cleanup but then the socket close event comes which immediately triggers
extHostSocket.destroy()before the graceful cleanup is finishedChange
The change tries to ensure the
extHostSocketgets shutdown gracefully, so that the cleanup code and still run and finish.Before
When opening a new window and connecting it to SSH and then closing it 3 times, the number of processes seems to increase each time:
{ "processCount": { "after": 33, "before": 10 }, "isLeak": true }After
When opening a new window and connecting it to SSH and then closing it 3 times, the number of processes seems to stay constant:
{ "processCount": { "after": 13, "before": 13 }, "isLeak": false }