From fb9fd7689fbeded960a440bdb65d881f1f70dd7d Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Thu, 27 Apr 2023 22:04:28 +0200 Subject: [PATCH] fix(trace): Remove wrong error message Reverse queries *are* actually supported, so the error message was wrong Even dig supports it naturally. --- cmd/cli.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/cli.go b/cmd/cli.go index 5eabce3..0077a3f 100644 --- a/cmd/cli.go +++ b/cmd/cli.go @@ -60,10 +60,6 @@ func ParseCLI(args []string, version string) (opts *util.Options, err error) { opts.Logger.Warn("Every query after the root query will only use UDP/TCP") } - if opts.Reverse { - opts.Logger.Error("Reverse queries are not currently supported") - } - opts.RD = true }