We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue: The first time faker.CCType() is called, the value is internally cached, meaning subsequent calls will always return the same data:
faker.CCType()
faker/payment.go
Line 31 in 5effebb
Fix: Remove the caching to ensure subsequent calls are sufficiently random.
The text was updated successfully, but these errors were encountered:
also this will result in data race issue if multiple faker.CCType() being called for the first time in parallel
Sorry, something went wrong.
No branches or pull requests
Issue: The first time
faker.CCType()
is called, the value is internally cached, meaning subsequent calls will always return the same data:faker/payment.go
Line 31 in 5effebb
Fix: Remove the caching to ensure subsequent calls are sufficiently random.
The text was updated successfully, but these errors were encountered: