Actions
Bug #32008
closedUnsetting repository architecture restriction doesn't reach clients
Difficulty:
Triaged:
Yes
Bugzilla link:
Description
... because Candlepin never gets updated!
The candlepin db state can be verified with this query:
SELECT product.uuid AS "Product UUID", product.name AS "Product Name", product.product_id, content.content_id, content.uuid, content.label, content.name, content.arches FROM cp_pool pool JOIN cp2_products product ON pool.product_uuid = product.uuid JOIN cp2_product_content pc ON product.uuid = pc.product_uuid JOIN cp2_content content ON content.uuid = pc.content_uuid ORDER BY product.name ASC;
The implication of this change is that, for example: accidentally setting i386 architecture and then unsetting it will permanently lock the Content in Candlepin to i386 while the UI will show that no restriction is set because the RootRepository has the correct value. The workaround is to recreate the repo which is not ideal.
The fix should include a migration to update Candlepin to reflect whatever is currently set on the RootRepository
Updated by The Foreman Bot over 3 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/Katello/katello/pull/9262 added
Updated by The Foreman Bot over 3 years ago
- Fixed in Releases Katello 4.2.0 added
Updated by Lucy Fu over 3 years ago
- Status changed from Ready For Testing to Closed
Applied in changeset katello|28bb2bee1d5fa93532b2bbc1c48dcf6bc5f924ab.
Updated by The Foreman Bot over 3 years ago
- Pull request https://github.com/Katello/katello/pull/9296 added
Actions