fix: handle duplicates when applying CompontentType constraint#572
fix: handle duplicates when applying CompontentType constraint#572bradenmacdonald merged 1 commit intomainfrom
Conversation
Co-Authored-By: Claude <noreply@anthropic.com>
|
Thanks for the pull request, @bradenmacdonald! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. DetailsWhere can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources: When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
| Component.objects.filter(component_type_id__in=duplicate_ids).update( | ||
| component_type_id=keep_id, | ||
| ) |
There was a problem hiding this comment.
I think this is entirely reasonable, but I also don't think you can actually create new Components in practice if there are duplicates of the ComponentType because it should fail to fetch a unique result. But anyway, this can't hurt.
There was a problem hiding this comment.
I also don't think you can actually create new Components in practice if there are duplicates of the ComponentType because it should fail to fetch a unique result
Sorry, I'm not following. Isn't that exactly the bug we're trying to solve, and exactly the problem that was reported on the forum?
There was a problem hiding this comment.
Sorry, I was thinking that it was definitely possible to create duplicate ComponentTypes. But when you try to create a Component, I thought it would error out when trying to fetch the type because there are duplicates. But I was forgetting that it's a get_or_create kind of deal, so it would be good for inserting that one Component during the race condition, even if future attempts to create Components of that type would always error out because there are multiple ComponentTypes that match.
There was a problem hiding this comment.
So in any case, yeah, this code all makes sense. Thank you. 😄
Implements #548
This improves content migration
0004so that installations with invalid duplicates (which exist, see example) will have their data cleaned up automatically.How to test
You can run this script to test using SQLite with the django test settings: