fix: prevent app from quitting if one resolver failed

pull/26/head
Karan Sharma 2021-05-18 19:05:47 +05:30
parent f1a1e3aae6
commit e5acf1214c
1 changed files with 0 additions and 1 deletions

View File

@ -137,7 +137,6 @@ func main() {
resp, err := rslv.Lookup(q)
if err != nil {
app.Logger.WithError(err).Error("error looking up DNS records")
app.Logger.Exit(2)
}
responses = append(responses, resp)
}