fix(trace): Remove wrong error message
All checks were successful
continuous-integration/drone/push Build is passing

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

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
}