Skip to content

Commit

Permalink
dns: fix trace_events name for resolveCaa()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Trott authored and targos committed May 1, 2021
1 parent 26e9c39 commit 0f126d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cares_wrap.cc
Expand Up @@ -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 {
Expand Down

0 comments on commit 0f126d0

Please sign in to comment.