Merge "Fix CleanupWorker exception messages" into feature/zuulv3

This commit is contained in:
Jenkins 2017-05-12 14:33:16 +00:00 committed by Gerrit Code Review
commit dabb6d0a96
1 changed files with 3 additions and 3 deletions

View File

@ -1196,19 +1196,19 @@ class CleanupWorker(BaseCleanupWorker):
self._cleanupNodeRequestLocks()
except Exception:
self.log.exception(
"Exception in DeletedNodeWorker (node request lock cleanup):")
"Exception in CleanupWorker (node request lock cleanup):")
try:
self._cleanupLeakedInstances()
except Exception:
self.log.exception(
"Exception in DeletedNodeWorker (leaked instance cleanup):")
"Exception in CleanupWorker (leaked instance cleanup):")
try:
self._cleanupLostRequests()
except Exception:
self.log.exception(
"Exception in DeletedNodeWorker (lost request cleanup):")
"Exception in CleanupWorker (lost request cleanup):")
class DeletedNodeWorker(BaseCleanupWorker):