diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index 142498d435bd..41ca348b8aef 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -388,7 +388,10 @@ void mainthread() for(;;) { sleep(1800); - doSecPoll(false); + try { + doSecPoll(false); + } + catch(...){} } L<