Remove abort(500) on checksum mismatch
This commit is contained in:
parent
52fb982ae1
commit
5c7f2a5c16
1 changed files with 0 additions and 1 deletions
|
@ -379,7 +379,6 @@ def _write_manifest(namespace, repo_name, manifest):
|
||||||
if v1_image.storage.content_checksum != digest_str:
|
if v1_image.storage.content_checksum != digest_str:
|
||||||
logger.error('Checksum mismatch on V1 layer %s (#%s): Expected digest %s, found %s',
|
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)
|
v1_mdata.docker_id, v1_image.id, digest_str, v1_image.storage.content_checksum)
|
||||||
abort(500)
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Lookup the parent image for the layer, if any.
|
# Lookup the parent image for the layer, if any.
|
||||||
|
|
Reference in a new issue