-
Notifications
You must be signed in to change notification settings - Fork 8k
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 concurrent error in InMemoryMetricsRepository of the dashboard #488
Fix concurrent error in InMemoryMetricsRepository of the dashboard #488
Conversation
…and fix edit rule issue when cancel (#370) - Make fallbackToLocalWhenFail of cluster rules configurable in dashboard - Fix edit rule when hit cancel button (object share problem solved by deep copy) - Add metric table td header's title for friendly prompt info
Signed-off-by: Eric Zhao <[email protected]>
…g description Signed-off-by: Eric Zhao <[email protected]>
- implement `SentinelPreFilter`, `SentinelPostFilter` and `SentinelErrorFilter` - support fallback
Signed-off-by: Eric Zhao <[email protected]>
Signed-off-by: Eric Zhao <[email protected]>
…WarmUpRateLimiterController Signed-off-by: Carpenter Lee <[email protected]>
Signed-off-by: Eric Zhao <[email protected]>
Signed-off-by: Carpenter Lee <[email protected]>
… ClassNotFoundException thrown by Nacos client (#438)
Signed-off-by: Eric Zhao <[email protected]>
…r when loading SPI Signed-off-by: Eric Zhao <[email protected]>
…text in Tracer Signed-off-by: Eric Zhao <[email protected]>
Signed-off-by: Eric Zhao <[email protected]>
…#465) - reuse old map size to avoid rearrange and rehash the map
Signed-off-by: Eric Zhao <[email protected]>
Signed-off-by: Eric Zhao <[email protected]>
- Apply awaitility to core tests - Cache maven local repo in Travis
Signed-off-by: Eric Zhao <[email protected]>
Signed-off-by: Eric Zhao <[email protected]>
… and add basic test cases Signed-off-by: Eric Zhao <[email protected]>
* Extract getRule in BlockException and refine override methods in subclasses Signed-off-by: Eric Zhao <[email protected]>
- The NPE will occur when multiple threads are trying to create the connection group for the same namespace Signed-off-by: Eric Zhao <[email protected]>
Signed-off-by: Eric Zhao <[email protected]>
同步远程仓库最近代码
fix ConcurrentModificationException of listResourcesOfApp method
Codecov Report
@@ Coverage Diff @@
## master #488 +/- ##
============================================
+ Coverage 40.72% 40.75% +0.02%
- Complexity 1095 1097 +2
============================================
Files 236 236
Lines 7570 7570
Branches 1050 1050
============================================
+ Hits 3083 3085 +2
+ Misses 4090 4088 -2
Partials 397 397
Continue to review full report at Codecov.
|
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.
LGTM
Thanks for contributing! |
Describe what this PR does / why we need it
fix the ConcurrentModificationException of InMemoryMetricsRepository
Does this pull request fix one issue?
Fixes #433
Describe how you did it
replace LinkedHashMap with ConcurrentLinkedHashMap of google code
Describe how to verify it
run the test case of InMemoryMetricsRepository
Special notes for reviews