Make sure to encode all V1 metadata strings

Fixes #1239
This commit is contained in:
Joseph Schorr 2016-02-15 10:57:20 -05:00
parent 989c2722e5
commit 69262282fe
2 changed files with 34 additions and 1 deletions

View file

@ -408,7 +408,8 @@ def _write_manifest(namespace, repo_name, manifest):
images_map[v1_mdata.docker_id].storage.content_checksum != digest_str) or
has_rewritten_ids):
working_docker_id = hashlib.sha256(mdata.v1_metadata_str + '@' + digest_str).hexdigest()
v1_metadata_str = mdata.v1_metadata_str.encode('utf-8')
working_docker_id = hashlib.sha256(v1_metadata_str + '@' + digest_str).hexdigest()
logger.debug('Rewriting docker_id %s/%s %s -> %s', namespace, repo_name, v1_mdata.docker_id,
working_docker_id)
has_rewritten_ids = True