-
Notifications
You must be signed in to change notification settings - Fork 3
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
Increase case id range #2684
Increase case id range #2684
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice initiative but I think this has a risk of introducing some very rare bugs which might be hard to sniff out.
I guess this is not important |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good 👍 Do we have any length restrictions in the database, that we need to update?
UPDATE: it's varchar(32) so we should be safe
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Description
Apparently we are running out of unique id:s for our cases. This PR increases the range of possible case ids by increasing the char length for them.
Fixed
This version is a