Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
Fix issue with associating embedded manifests in manifest list
Browse files Browse the repository at this point in the history
https://pulp.plan.io/issues/3892

re #3137
closes #3892
  • Loading branch information
werwty committed Aug 1, 2018
1 parent 4356228 commit baeef3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/pulp_docker/plugins/importers/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def _import_manifest_list(conduit, unit, dest_repo):
# Collect referenced manifests
manifest_digests = set()
for manifest in unit.manifests:
manifest_digests.add(manifest)
manifest_digests.add(manifest.digest)

if unit.amd64_digest:
manifest_digests.add(unit.amd64_digest)
Expand Down

0 comments on commit baeef3a

Please sign in to comment.