2019-07-16 17:23:04 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Thu, 13 Sep 2018 09:08:10 -0700
|
|
|
|
Subject: FIXME: remove async_id assertion check
|
|
|
|
|
2019-12-13 17:18:45 +00:00
|
|
|
async hooks are hella broken in Electron. This was checking that they weren't,
|
|
|
|
but they are, so we just disabled the check. YOLO.
|
2019-07-16 17:23:04 +00:00
|
|
|
|
|
|
|
diff --git a/src/api/callback.cc b/src/api/callback.cc
|
2020-07-27 16:12:29 +00:00
|
|
|
index 9f52c25cf0d9005c2e70b76eb52eae1bd15f0a53..e151871dc90b6c29dc3fc3db162e24baeb45923d 100644
|
2019-07-16 17:23:04 +00:00
|
|
|
--- a/src/api/callback.cc
|
|
|
|
+++ b/src/api/callback.cc
|
2020-06-19 00:37:23 +00:00
|
|
|
@@ -117,12 +117,14 @@ void InternalCallbackScope::Close() {
|
|
|
|
perform_stopping_check();
|
2019-07-16 17:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+#if 0 // FIXME(codebytere): figure out why this check fails/causes crash
|
|
|
|
// Make sure the stack unwound properly. If there are nested MakeCallback's
|
|
|
|
// then it should return early and not reach this code.
|
|
|
|
if (env_->async_hooks()->fields()[AsyncHooks::kTotals]) {
|
|
|
|
CHECK_EQ(env_->execution_async_id(), 0);
|
|
|
|
CHECK_EQ(env_->trigger_async_id(), 0);
|
|
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
if (!tick_info->has_tick_scheduled() && !tick_info->has_rejection_to_warn()) {
|
|
|
|
return;
|