From dec9bc71e22cd15d28e64a1da16e7caad065eea3 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Mon, 5 Jul 2021 11:25:40 +0200 Subject: [PATCH] auth NOTIFY: log names of NSes we could not resolve --- pdns/mastercommunicator.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pdns/mastercommunicator.cc b/pdns/mastercommunicator.cc index d386a956d4..7bd71f476f 100644 --- a/pdns/mastercommunicator.cc +++ b/pdns/mastercommunicator.cc @@ -58,15 +58,16 @@ void CommunicatorClass::queueNotifyDomain(const DomainInfo& di, UeberBackend* B) nsset.insert(getRR(rr.dr)->getNS().toString()); for(const auto & j : nsset) { - vector nsips=fns.lookup(DNSName(j), B); + auto dnsj = DNSName(j); + vector nsips=fns.lookup(dnsj, B); if(nsips.empty()) - g_log<