You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The debugger crashes with "autoAttachChildProcesses": true set when debugging the extension host and a debugged child process exits quickly.
Good find, this is actually reproducable when any debugged child process in the ext host ends, for example adding this to the "hello world" sample will cause a crash too
Fixes#1289
We weren't properly attributing child processes in the extension host to
the extension host process that created them. This caused them all to
be treated as if they _were_ the extension host process, so closing
any one of them resulted in the debugger thinking the extension host had
gone away and clearing up all sessions.
Describe the bug
The debugger crashes with
"autoAttachChildProcesses": true
set when debugging the extension host and a debugged child process exits quickly.To Reproduce
Steps to reproduce the behavior:
npm install
in both the repos root directory and jest subdirectory.Log File
vscode-debugadapter-724d8689.json.gz
VS Code Version: 1.67.2
Additional context
See jest-community/vscode-jest#873
The text was updated successfully, but these errors were encountered: