Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/2041.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix "Manifest matching query does not exist" error on container repo import.
3 changes: 2 additions & 1 deletion pulp_container/app/modelresource.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ def set_up_queryset(self):
:return: Manifests specific to a specified repo-version.
"""
return ManifestListManifest.objects.filter(
manifest_list__pk__in=self.repo_version.content
manifest_list__pk__in=self.repo_version.content,
image_manifest__pk__in=self.repo_version.content,
).order_by("id")

class Meta:
Expand Down
Loading