-
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
tls: fix assert in context._external accessor #5521
Conversation
Tests pass locally. CI is timing out and I have to step out for a bit, will revisit when I get back. |
LGTM |
* Restrict the receiver to instances of the FunctionTemplate. * Use `args.This()` instead of `args.Holder()`. Fixes: nodejs#3682 PR-URL: nodejs#5521 Reviewed-By: Fedor Indutny <fedor@indutny.com>
adding the lts-watch flag @bnoordhuis it is safe to assume you think this should be backported |
one more time pinging @bnoordhuis. Maybe @indutny knows. This landed cleanly and tests passed locally |
If it builds - it is safe to land it. |
@thealphanerd For posterity, yes, it should be back-ported. |
We have an internal consumer that ran into what looked like nodejs/node-v0.x-archive#9028 and our tests have indicated that that the this PR has resolved the issue. Long way of saying +1 to getting this landed in the next 4.X releases. |
args.This()
instead ofargs.Holder()
.Fixes: #3682
R=@indutny