-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Fix compatible with spring cloud #307
Conversation
Codecov Report
@@ Coverage Diff @@
## master #307 +/- ##
==========================================
+ Coverage 62.45% 62.82% +0.36%
==========================================
Files 77 76 -1
Lines 1979 1977 -2
Branches 231 231
==========================================
+ Hits 1236 1242 +6
+ Misses 579 576 -3
+ Partials 164 159 -5
Continue to review full report at Codecov.
|
private static SofaRuntimeContext sofaRuntimeContext; | ||
private static AtomicBoolean isInitiated = new AtomicBoolean(false); | ||
|
||
public static void initApplicationContext(ConfigurableApplicationContext applicationContext) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this class and its method change to not static?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's better to remove the modifier of static
. but it can't.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
+1 |
#297