checkpointImageDigests.clear();
}
public RemoteImageManifest getImageManifest(long fromTxid) throws IOException {
checkImageStorageFormatted();
FSImageTransactionalStorageInspector inspector = new FSImageTransactionalStorageInspector();
inspector.inspectDirectory(imageStorage.getSingularStorageDir());
List<RemoteImage> results = Lists.newArrayList();
for (FSImageFile foundImage : inspector.getFoundImages()) {
// skip older images
if (foundImage.getCheckpointTxId() < fromTxid) {
continue;
}
// get md5 if exists