improve handling of failure when trying to read md5, should be ignored on any exception, not just io exception

This commit is contained in:
kimchy 2010-07-29 15:10:37 +03:00
parent 194e6cbff6
commit e955e41a91
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@ public abstract class BlobStoreIndexShardGateway extends AbstractIndexShardCompo
cachedMd5.put(name, md5);
}
builder.put(name, new PlainBlobMetaData(name, sizeInBytes, md5));
} catch (IOException e) {
} catch (Exception e) {
// don't add it!
}
}