Make sure to not log exceptions if Swift deletes fail

This commit is contained in:
Joseph Schorr 2016-11-10 11:57:44 -05:00
parent 10255d4052
commit 59cb6bd216
2 changed files with 5 additions and 1 deletions

View file

@ -206,7 +206,6 @@ class SwiftStorage(BaseStorage):
try:
self._get_connection().delete_object(self._swift_container, path)
except Exception:
logger.exception('Could not delete path %s', path)
raise IOError('Cannot delete path: %s' % path)
def _random_checksum(self, count):