Merge pull request #1233 from coreos-inc/wtfbbq

Remove abort(500) on checksum mismatch
This commit is contained in:
Quentin Machu 2016-02-11 18:36:17 -05:00
commit 8b61c69dad

View file

@ -379,7 +379,6 @@ def _write_manifest(namespace, repo_name, manifest):
if v1_image.storage.content_checksum != digest_str:
logger.error('Checksum mismatch on V1 layer %s (#%s): Expected digest %s, found %s',
v1_mdata.docker_id, v1_image.id, digest_str, v1_image.storage.content_checksum)
abort(500)
continue
# Lookup the parent image for the layer, if any.