fix ignored exception

This commit is contained in:
kimchy 2010-07-24 18:48:28 +03:00
parent 0072dd816b
commit a6a993ff08
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ public abstract class BlobStoreIndexShardGateway extends AbstractIndexShardCompo
if (snapshot.newTranslogCreated()) { if (snapshot.newTranslogCreated()) {
try { try {
translogContainer.deleteBlob("translog-" + snapshot.lastTranslogId()); translogContainer.deleteBlob("translog-" + snapshot.lastTranslogId());
} catch (IOException e) { } catch (Exception e) {
// ignore // ignore
} }
} }