Skip to content

Commit

Permalink
Fixes #36404 - report content added for modules + container manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
ianballou committed Oct 2, 2024
1 parent c58ef63 commit c3181b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions lib/katello/repository_types/docker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@
:priority => 1,
:pulp3_service_class => ::Katello::Pulp3::DockerManifest,
:removable => true,
:uploadable => true
:uploadable => true,
:primary_content => true
content_type Katello::DockerManifestList,
:priority => 2,
:pulp3_service_class => ::Katello::Pulp3::DockerManifestList
:pulp3_service_class => ::Katello::Pulp3::DockerManifestList,
:primary_content => true
content_type Katello::DockerTag,
:priority => 3,
:pulp3_service_class => ::Katello::Pulp3::DockerTag,
Expand Down
3 changes: 2 additions & 1 deletion lib/katello/repository_types/yum.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
:uploadable => true
content_type Katello::ModuleStream,
:priority => 2,
:pulp3_service_class => ::Katello::Pulp3::ModuleStream
:pulp3_service_class => ::Katello::Pulp3::ModuleStream,
:primary_content => true
content_type Katello::Erratum, :priority => 3,
:pulp3_service_class => ::Katello::Pulp3::Erratum,
:primary_content => true, :mutable => true
Expand Down

0 comments on commit c3181b0

Please sign in to comment.