Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Madsen <amwebdk@gmail.com>2017-11-22 15:54:38 +0300
committerAndreas Madsen <amwebdk@gmail.com>2017-12-19 20:04:43 +0300
commitf3f1a9349afaee9a05dce8df0836dd4355836391 (patch)
tree8080d6724980da97b8c7c88c97b65f02d1fa6391 /src/udp_wrap.cc
parentfe257ac2078676012ed6d188e63e50827fe69d27 (diff)
async_hooks: rename initTriggerId
rename initTriggerId to defaultTriggerAsyncId such it matches the rest of our naming. PR-URL: https://github.com/nodejs/node/pull/17273 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/udp_wrap.cc')
-rw-r--r--src/udp_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 9d4e7f7ab41..55e12e4278b 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -357,7 +357,7 @@ void UDPWrap::DoSend(const FunctionCallbackInfo<Value>& args, int family) {
node::Utf8Value address(env->isolate(), args[4]);
const bool have_callback = args[5]->IsTrue();
- env->set_init_trigger_async_id(wrap->get_async_id());
+ env->set_default_trigger_async_id(wrap->get_async_id());
SendWrap* req_wrap = new SendWrap(env, req_wrap_obj, have_callback);
size_t msg_size = 0;