Merge "Catch more exceptions when recording progress" into feature/deep

This commit is contained in:
Zuul 2018-04-27 00:06:25 +00:00 committed by Gerrit Code Review
commit eb77c59418
1 changed files with 1 additions and 1 deletions

View File

@ -1440,7 +1440,7 @@ class ContainerSharder(ContainerReplicator):
'Unhandled exception while processing %s: %s', path, error)
try:
self._record_sharding_progress(broker, node, error)
except Exception as error:
except (Exception, Timeout) as error:
self.logger.exception(
'Unhandled exception while dumping progress for %s: %s',
path, error)