-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix unhandled ERR_IPC_CHANNEL_CLOSED and a deadlock #11144
Conversation
Codecov Report
@@ Coverage Diff @@
## master #11144 +/- ##
==========================================
+ Coverage 64.18% 64.20% +0.01%
==========================================
Files 307 307
Lines 13370 13370
Branches 3262 3262
==========================================
+ Hits 8582 8584 +2
+ Misses 4083 4082 -1
+ Partials 705 704 -1
Continue to review full report at Codecov.
|
@@ -205,6 +205,7 @@ export default class ChildProcessWorker implements WorkerInterface { | |||
private _onExit(exitCode: number) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private _onExit(exitCode: number) { | |
private _onExit(exitCode: number | null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merged it, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changelog entry and Tim's type suggestion and I think we're good to go 🙂
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
The detailed description is at #11143.
Fixes #11143