We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fbdf9c commit 2cb9c88Copy full SHA for 2cb9c88
2 files changed
CHANGES/2041.bugfix
@@ -0,0 +1 @@
1
+Fix "Manifest matching query does not exist" error on container repo import.
pulp_container/app/modelresource.py
@@ -169,7 +169,8 @@ def set_up_queryset(self):
169
:return: Manifests specific to a specified repo-version.
170
"""
171
return ManifestListManifest.objects.filter(
172
- manifest_list__pk__in=self.repo_version.content
+ manifest_list__pk__in=self.repo_version.content,
173
+ image_manifest__pk__in=self.repo_version.content,
174
).order_by("id")
175
176
class Meta:
0 commit comments