-
Notifications
You must be signed in to change notification settings - Fork 29.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
lib: fix diagnostics_channel hasSubscribers error #36599
Conversation
node/lib/diagnostics_channel.js Line 95 in 656ce92
Should't this too be ref.deref() ?
|
|
7429dce
to
2294439
Compare
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 reference, WeakRef
is not available through primordials because it can be disable by the V8 flag --no-harmony-weak-refs
(although using this flag crashes node
, oh well).
I think the subsystem in commit message should be "lib". |
Thanks for the reply, but I'd like to know why the subsystem is |
My comment is based on previous commits like c6c36c3. |
2294439
to
1390313
Compare
Thanks, the subsystem in commit message and pull request title is |
Landed in 2d40e3f |
1390313
to
2d40e3f
Compare
Fixes: #36598 PR-URL: #36599 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Fixes: #36598 PR-URL: #36599 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Related Issues
Fixes: #36598
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes