From 0f126d0e059678aba712899e302e3beba40936d8 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 5 Nov 2020 08:43:29 -0800 Subject: [PATCH] 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 Reviewed-By: Colin Ihrig --- src/cares_wrap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc index 6d7a8e66a9d2ce..71766fa39171af 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 req_wrap_obj) - : QueryWrap(channel, req_wrap_obj, "resolve6") { + : QueryWrap(channel, req_wrap_obj, "resolveCaa") { } int Send(const char* name) override {