From 2fda71f20354a99ff873130131a70f60a6c26771 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Thu, 23 Oct 2014 19:28:36 +0200 Subject: [PATCH] make very sure we don't keel over if something goes wrong polling security status in auth --- pdns/common_startup.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index 824f8e8fd..656efe615 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -413,7 +413,10 @@ void mainthread() for(;;) { sleep(1800); - doSecPoll(false); + try { + doSecPoll(false); + } + catch(...){} } L<