diff --git a/pulp_container/app/modelresource.py b/pulp_container/app/modelresource.py index dfd7e8f85..7bf71f278 100644 --- a/pulp_container/app/modelresource.py +++ b/pulp_container/app/modelresource.py @@ -125,7 +125,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: