Bug #32008
Unsetting 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
Associated revisions
Refs #32008 - make sure upgrade task runs
History
#1
Updated by Jonathon Turel about 2 years ago
- Bugzilla link set to 1934795
#2
Updated by James Jeffers about 2 years ago
- Triaged changed from No to Yes
#3
Updated by The Foreman Bot almost 2 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/Katello/katello/pull/9262 added
#4
Updated by The Foreman Bot almost 2 years ago
- Fixed in Releases Katello 4.2.0 added
#5
Updated by Lucy Fu almost 2 years ago
- Status changed from Ready For Testing to Closed
Applied in changeset katello|28bb2bee1d5fa93532b2bbc1c48dcf6bc5f924ab.
#6
Updated by The Foreman Bot almost 2 years ago
- Pull request https://github.com/Katello/katello/pull/9296 added
Fixes #32008 - Candlepin API accepts empty string to unset a value.
nil is ignored by Candlepin API. Use empty string to reset the arch value of a content in candlepin DB.