Skip to content

Commit 8a92698

Browse files
addaleaxcodebytere
authored andcommittedJun 9, 2020
worker: call CancelTerminateExecution() before exiting Locker
As the comment indicates, this fixes a DCHECK failure, although I don’t quite understand why it is happening in the first place. PR-URL: #33347 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
1 parent c129e88 commit 8a92698

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/node_worker.cc

+5
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,11 @@ void Worker::Run() {
272272

273273
DeleteFnPtr<Environment, FreeEnvironment> env_;
274274
auto cleanup_env = OnScopeLeave([&]() {
275+
// TODO(addaleax): This call is harmless but should not be necessary.
276+
// Figure out why V8 is raising a DCHECK() here without it
277+
// (in test/parallel/test-async-hooks-worker-asyncfn-terminate-4.js).
278+
isolate_->CancelTerminateExecution();
279+
275280
if (!env_) return;
276281
env_->set_can_call_into_js(false);
277282
Isolate::DisallowJavascriptExecutionScope disallow_js(isolate_,

0 commit comments

Comments
 (0)
Please sign in to comment.