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
InitExecutor#doInit() may be executed repeatedly.
we can do this to avoid repeat doInit.
private static AtomicBoolean initialized = new AtomicBoolean(false); ... public static void doInit() { if (!initialized.compareAndSet(false, true)) { return; } ... }
The text was updated successfully, but these errors were encountered:
4612303
Thanks for reporting!
Sorry, something went wrong.
it only happen in staic { }. is it a NotThreadSafe ? It is ThreadSafe
staic { }
Merge pull request #3 from alibaba/master
2f485b4
merge onlie
Merge pull request alibaba#3 from apache/develop
8fa4711
Develop
No branches or pull requests
InitExecutor#doInit() may be executed repeatedly.
we can do this to avoid repeat doInit.
The text was updated successfully, but these errors were encountered: