Fix CleanupWorker exception messages
Change-Id: Ia996adf642e39aa9a0ec7ee54e3a35ac8875d85b
This commit is contained in:
parent
60dfa863e9
commit
566a690e9e
@ -1195,19 +1195,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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user