-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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: merge RunInThisContext()
with RunInContext()
#43225
src: merge RunInThisContext()
with RunInContext()
#43225
Conversation
@addaleax Could you take a look when you have time? I tried to resolve the todo you wrote. |
ca2b036
to
fe9eab5
Compare
cc @nodejs/vm |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
The test failure looks irrelevant to this change. Can anyone pls help me re-run the CI? |
This comment was marked as outdated.
This comment was marked as outdated.
Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com
6d86ee6
to
06a97fd
Compare
Thanks for keeping retry the CI test. I've rebased this PR again because of the same reason above. |
IMO you'll get better result by not rebasing the CI, every time we push new commits we have to re-run all the jobs including the one that were already green. FYI no need to rebase it yourself, by re-adding the |
@aduh95 A long-living curiosity I've had is cleared through your suggestion. Thanks! |
@daeyeon I'd suggest to not add the label, resuming CI is much more efficient than re-requesting CI as it can skip already passing jobs. |
@aduh95 Regarding "resuming CI", after reading the collaborator guide, I guessed it maybe mean "Resume Build" in CI.
It says to try "Resume Build" in the left navigation, but I didn't find it there. Instead, I found a "Resume Build" string below "Test Result" in this page that looks disabled. Could you please check that's what you recommended? (I've recently joined the triagers team. So maybe I have no permission yet.) |
Yeah, triaggers don't have permission for that, adding the possibility for them to do it has been discussed in #40817 but it's not as trivial you'd think to implement. |
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.
RSLGTM
Landed in 7f29993 |
Thank you all! |
This commit resolves a TODO in `RunInThisContext()` by merging `RunInThisContext()` with `RunInContext()`. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: #43225 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit resolves a TODO in `RunInThisContext()` by merging `RunInThisContext()` with `RunInContext()`. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: #43225 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit resolves a TODO in `RunInThisContext()` by merging `RunInThisContext()` with `RunInContext()`. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: #43225 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit resolves a TODO in `RunInThisContext()` by merging `RunInThisContext()` with `RunInContext()`. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: nodejs/node#43225 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit resolves TODO in
RunInThisContext()
by mergingRunInThisContext()
withRunInContext()
.Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com