-
-
Notifications
You must be signed in to change notification settings - Fork 591
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression in 5.2.5 - not adding GUID hashes to duplicate slugs #892
Comments
Bump? |
Hmm thanks @jeffblake -- have you managed to track it down to a particular commit? I'm guessing it'll be the same in 5.3.0 |
This perhaps? fd2d379 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Hi, thought I'd follow up on this. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I think this still needs fixing |
I just ran into this in 5.2.4 when using the history module. Updating a slug for an existing user was causing a slug collision. The reason was that some existing slugs didn't have corresponding history records. Creating those missing history records manually in console solved the issue. This seems like a bug because my expectation was that history was only a fallback for finding records, not a source of truth for creating slugs. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I think I'm going to need help with this, please |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
@jeffblake I may have just encountered this, and it seems to be caused by a soft-deleted (paranoid) record causing the collision. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I have something like this
Where
event_times
basically callsstrftime
on a date field, e.g.4:00pm-5:00pm
So if I call
dup
with 5.2.5 on an existing record, and try to save the new one, it causes a unique index violation, but does not do that on 5.2.4The text was updated successfully, but these errors were encountered: