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
Issue Description: The vscode-eslint extension consistently leaves behind a zombie process specifically [npm config get ] <defunct> every time VSCode is closed. This issue occurs every time without exception, leading to additional wait times during system shutdown as the process is awaited to terminate.
Steps to Reproduce:
Open VSCode with the vscode-eslint extension enabled.
Close VSCode.
Check for zombie processes using ps -aux | grep defunct and observe the [npm config get ] <defunct> zombie process.
A zombie process [npm config get ] <defunct> remains each time VSCode is closed. The parent process typically is /opt/visual-studio-code/code /home/username/.vscode/extensions/dbaeumer.vscode-eslint-2.4.4/server/out/eslintServer.js --node-ipc --clientProcessId=94143
Killing the parent process results in the zombie being reattached to systemd, remaining as a defunct process. This causes significant delays during system shutdown due to the wait for this process to terminate.
The text was updated successfully, but these errors were encountered:
Environment:
Issue Description: The vscode-eslint extension consistently leaves behind a zombie process specifically
[npm config get ] <defunct>
every time VSCode is closed. This issue occurs every time without exception, leading to additional wait times during system shutdown as the process is awaited to terminate.Steps to Reproduce:
ps -aux | grep defunct
and observe the[npm config get ] <defunct>
zombie process.A zombie process
[npm config get ] <defunct>
remains each time VSCode is closed. The parent process typically is/opt/visual-studio-code/code /home/username/.vscode/extensions/dbaeumer.vscode-eslint-2.4.4/server/out/eslintServer.js --node-ipc --clientProcessId=94143
Killing the parent process results in the zombie being reattached to systemd, remaining as a defunct process. This causes significant delays during system shutdown due to the wait for this process to terminate.
The text was updated successfully, but these errors were encountered: