-
Notifications
You must be signed in to change notification settings - Fork 16
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
Malformed UUIDs v4 #17
Comments
I cannot reproduce your problem:
Even with 100K generated UUIDs it was always 36 characters in total... |
We replaced the library without other changes and the issue went away. |
@rse we experienced the described problem only with some users but reliably. Is it possible that your algorithm uses system specific values for its computation? |
We're encountering this issue as well. Although it occurs very rarely, it still causes disruptions for us. We cannot reliably reproduce this.
|
I have been using
new UUID(4).format()
and noticed that it generates some invalid / malformed UUIDs.A proper UUID v4 looks like this:
But I somehow received the following UUIDs:
Is it possible that
UUID(4).format()
generates UUIDs with too many dashes (with 1 extra char per extra dash)? Can this library be affected by a sign problem?The text was updated successfully, but these errors were encountered: