Remove abort(500) on checksum mismatch

This commit is contained in:
Quentin Machu 2016-02-11 18:32:21 -05:00
parent 52fb982ae1
commit 5c7f2a5c16

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.