]> granicus.if.org Git - pdns/commitdiff
whitespace + better error message for ringbuffer error
authorbert hubert <bert.hubert@netherlabs.nl>
Thu, 22 Jan 2015 11:57:52 +0000 (12:57 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Thu, 22 Jan 2015 11:57:52 +0000 (12:57 +0100)
pdns/slavecommunicator.cc
pdns/statbag.hh

index 80b3ad35893c3fd4349edbcd21346d01b2ad76d1..2b4d843d97a561afbf18bc1ff856090d1ea4f8da 100644 (file)
@@ -74,7 +74,6 @@ void CommunicatorClass::suck(const string &domain,const string &remote)
     UeberBackend *B=dynamic_cast<UeberBackend *>(P.getBackend());  // copy of the same UeberBackend
     DNSSECKeeper dk (B); // reuse our UeberBackend copy for DNSSECKeeper
 
-
     if(!B->getDomainInfo(domain, di) || !di.backend) { // di.backend and B are mostly identical
       L<<Logger::Error<<"Can't determine backend for domain '"<<domain<<"'"<<endl;
       return;
@@ -107,7 +106,6 @@ void CommunicatorClass::suck(const string &domain,const string &remote)
       }
     }
 
-
     vector<string> localaddr;
     ComboAddress laddr;
     if(B->getDomainMetadata(domain, "AXFR-SOURCE", localaddr) && !localaddr.empty()) {
@@ -123,7 +121,6 @@ void CommunicatorClass::suck(const string &domain,const string &remote)
       laddr.sin4.sin_family = 0;
     }
 
-
     bool hadDnssecZone = false;
     bool hadPresigned = false;
     bool hadNSEC3 = false;
@@ -140,7 +137,6 @@ void CommunicatorClass::suck(const string &domain,const string &remote)
       }
     }
 
-
     bool isDnssecZone = false;
     bool isPresigned = false;
     bool isNSEC3 = false;
index b95200a51898483662198ce5808e61bbaab65e48..5adbce454459202f71f261d34d7347b46ad975d3 100644 (file)
@@ -85,7 +85,7 @@ public:
   {
     if(d_doRings)  {
       if(!d_rings.count(name))
-       throw runtime_error("Attempting to account to non-existent ring");
+       throw runtime_error("Attempting to account to non-existent ring '"+std::string(name)+"'");
 
       d_rings[name].account(item);
     }
@@ -94,7 +94,7 @@ public:
   {
     if(d_doRings) {
       if(!d_comborings.count(name))
-       throw runtime_error("Attempting to account to non-existent comboring");
+       throw runtime_error("Attempting to account to non-existent comboring '"+std::string(name)+"'");
       d_comborings[name].account(item);
     }
   }