Actions
Bug #24603
closedpulp-2.17 new container image json
Description
app/models/katello/docker_manifest_list.rb
```
update_attributes(:schema_version => json[:schema_version],
:digest => json[:digest],
:downloaded => json[:downloaded],
- :docker_manifests => ::Katello::DockerManifest.where(:digest => json[:manifests])
+ :docker_manifests => ::Katello::DockerManifest.where(:digest => json[:manifests].pluck(:digest))
)
end
```
Actions