fix(trace): Remove wrong error message
continuous-integration/drone/push Build is passing Details

Reverse queries *are* actually supported, so the error message was wrong
Even dig supports it naturally.
This commit is contained in:
Sam Therapy 2023-04-27 22:04:28 +02:00
parent 329d81c001
commit fb9fd7689f
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
1 changed files with 0 additions and 4 deletions

View File

@ -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
}