-
Notifications
You must be signed in to change notification settings - Fork 112
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
Normalize User / Project Id Types #49
Comments
should I change it for providers like github, gitlab also ? |
this is unrelated to the issue |
oh, I see, I was thinking to change the types |
the source of the issue: there was an issue where the id column would be returned as a string instead of a number in db queries the fix: look at all db responses (from DB and from Cache storages), check the type of the returned id and remove the casting if it is no longer needed a regex search across the codebase full testing of the app will need to be conducted after to ensure there arnt any lingering issues |
Thanks, got it |
@McPizza0 , If you aren't working on this issue, can I work on this please ? |
sorry @skushagra9 this issue requires a lot of attention and testing |
Ok |
Currently we have some ids stored as numbers, some as strings (see here for more details: #49 (comment))
Those should be normalized so we don't have to do conversions anymore when comparing them.
Also the current conversions should be removed
The text was updated successfully, but these errors were encountered: