Merge "change periodic_task to catch all exceptions including BaseException"

This commit is contained in:
Zuul 2017-11-13 06:06:29 +00:00 committed by Gerrit Code Review
commit 704f00f574
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ class PeriodicTasks(object):
try:
task(self, context)
except Exception:
except BaseException:
if raise_on_error:
raise
LOG.exception("Error during %(full_task_name)s",