diff --git a/src/module_wrap.cc b/src/module_wrap.cc index 48af2daa139..9bcdb4dce75 100644 --- a/src/module_wrap.cc +++ b/src/module_wrap.cc @@ -279,7 +279,9 @@ void ModuleWrap::Evaluate(const FunctionCallbackInfo& args) { result = module->Evaluate(context); } + // Convert the termination exception into a regular exception. if (timed_out || received_signal) { + env->isolate()->CancelTerminateExecution(); // It is possible that execution was terminated by another timeout in // which this timeout is nested, so check whether one of the watchdogs // from this invocation is responsible for termination. @@ -288,7 +290,6 @@ void ModuleWrap::Evaluate(const FunctionCallbackInfo& args) { } else if (received_signal) { env->ThrowError("Script execution interrupted."); } - env->isolate()->CancelTerminateExecution(); } if (try_catch.HasCaught()) { diff --git a/src/node_contextify.cc b/src/node_contextify.cc index 68251004d57..e07d5ebcd29 100644 --- a/src/node_contextify.cc +++ b/src/node_contextify.cc @@ -851,7 +851,9 @@ class ContextifyScript : public BaseObject { result = script->Run(env->context()); } + // Convert the termination exception into a regular exception. if (timed_out || received_signal) { + env->isolate()->CancelTerminateExecution(); // It is possible that execution was terminated by another timeout in // which this timeout is nested, so check whether one of the watchdogs // from this invocation is responsible for termination. @@ -860,7 +862,6 @@ class ContextifyScript : public BaseObject { } else if (received_signal) { env->ThrowError("Script execution interrupted."); } - env->isolate()->CancelTerminateExecution(); } if (try_catch.HasCaught()) {