Skip to content

Commit 642174a

Browse files
committed
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: #35979 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 1bba8c8 commit 642174a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cares_wrap.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ class QueryAaaaWrap: public QueryWrap {
14931493
class QueryCaaWrap: public QueryWrap {
14941494
public:
14951495
QueryCaaWrap(ChannelWrap* channel, Local<Object> req_wrap_obj)
1496-
: QueryWrap(channel, req_wrap_obj, "resolve6") {
1496+
: QueryWrap(channel, req_wrap_obj, "resolveCaa") {
14971497
}
14981498

14991499
int Send(const char* name) override {

0 commit comments

Comments
 (0)