-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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
src: fix process exit listeners not receiving unsettled tla codes #56872
base: main
Are you sure you want to change the base?
src: fix process exit listeners not receiving unsettled tla codes #56872
Conversation
eef4c1f
to
80a0041
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #56872 +/- ##
==========================================
- Coverage 89.13% 89.10% -0.04%
==========================================
Files 665 665
Lines 193167 193194 +27
Branches 37190 37215 +25
==========================================
- Hits 172185 172142 -43
- Misses 13731 13763 +32
- Partials 7251 7289 +38
|
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.
Thanks for the PR. Some comments about the approaches taken.
23428e6
to
549873d
Compare
fix listeners registered via `process.on('exit', ...` not receiving error code 13 when an unsettled top-level-await is encountered in the code
a717cb0
to
b456e86
Compare
fix listeners registered via `process.on('exit', ...` not receiving error code 13 when an unsettled top-level-await is encountered in the code
b456e86
to
7a48cfd
Compare
Co-authored-by: Antoine du Hamel <[email protected]>
Co-authored-by: Antoine du Hamel <[email protected]>
Co-authored-by: Antoine du Hamel <[email protected]>
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.
LGTM
fix listeners registered via
process.on('exit', ...
not receiving error code 13 when an unsettled top-level-await is encountered in the codeFixes: #53551