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
Like the people complaining in this thread, I just found out the viper.Set* methods are not thread safe. #268
Add corresponding viper.SetSafe* methods that use a mutex to control access to the global object
Deprecate the global instance.
Write really explicit documentation that these viper.Set* functions are not thread safe.
I'm happy to work on an MR once (if) the approach is agreed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Preflight Checklist
Problem Description
Like the people complaining in this thread, I just found out the viper.Set* methods are not thread safe. #268
Proposed Solution
Add corresponding viper.SetSafe* methods that use a mutex to control access to the global object
Alternatives Considered
Deprecate the global instance.
Write really explicit documentation that these viper.Set* functions are not thread safe.
Additional Information
I'm happy to work on an MR once (if) the approach is agreed.
The text was updated successfully, but these errors were encountered: