fix ignored exception
This commit is contained in:
parent
0072dd816b
commit
a6a993ff08
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue