fix: call node::Stop on exit (#25430)

This commit is contained in:
Jeremy Rose 2020-09-14 14:08:46 -07:00 committed by GitHub
parent b1d8057ec9
commit 459a95aaec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -284,7 +284,7 @@ int NodeMain(int argc, char* argv[]) {
node::ResetStdio();
env->set_can_call_into_js(false);
node::Stop(env);
env->stop_sub_worker_contexts();
env->RunCleanup();

View file

@ -551,6 +551,7 @@ void ElectronBrowserMainParts::PostMainMessageLoopRun() {
node_debugger_->Stop();
node_env_->env()->set_trace_sync_io(false);
js_env_->OnMessageLoopDestroying();
node::Stop(node_env_->env());
node_env_.reset();
ElectronBrowserContext::browser_context_map().clear();