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:
authorRich Trott <rtrott@gmail.com>2020-11-05 19:43:29 +0300
committerRich Trott <rtrott@gmail.com>2020-11-09 16:57:00 +0300
commit642174a31f7c2d3a8352002095d35a2b34c1126c (patch)
treebcf3003ffa0e0ba0a954f061a6faa5909ba9fd62 /src/cares_wrap.cc
parent1bba8c81118425e2bc5457e408f398870255d26a (diff)
dns: fix trace_events name for resolveCaa()
A test was added for this in 6f34498 but because it was a test in the `internet` directory, it was not run on CI and it was not noticed that the test was failing. This fixes the error that was causing the test to fail. PR-URL: https://github.com/nodejs/node/pull/35979 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'src/cares_wrap.cc')
-rw-r--r--src/cares_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc
index 6d7a8e66a9d..71766fa3917 100644
--- a/src/cares_wrap.cc
+++ b/src/cares_wrap.cc
@@ -1493,7 +1493,7 @@ class QueryAaaaWrap: public QueryWrap {
class QueryCaaWrap: public QueryWrap {
public:
QueryCaaWrap(ChannelWrap* channel, Local<Object> req_wrap_obj)
- : QueryWrap(channel, req_wrap_obj, "resolve6") {
+ : QueryWrap(channel, req_wrap_obj, "resolveCaa") {
}
int Send(const char* name) override {