File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
concurrency-tests/src/jcstress/java/io/micrometer/concurrencytests Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ subprojects {
77
77
options. errorprone. disableWarningsInGeneratedCode = true
78
78
options. errorprone. excludedPaths = " .*/build/generated/.*"
79
79
options. errorprone. error(
80
+ " AlmostJavadoc" ,
80
81
" ArrayAsKeyOfSetOrMap" ,
81
82
" AttemptedNegativeZero" ,
82
83
" BadImport" ,
Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ public void arbiter(Z_Result r) {
96
96
// @formatter:off
97
97
/*
98
98
When configuring a MeterFilter after a Meter has already been registered, existing meters will be marked stale.
99
- Subsequent calls to {@code getOrCreateMeter} for those Meters create a new Meter with all MeterFilters applied.
100
- If multiple concurrent calls to {@code getOrCreateMeter} interleave, it's possible not all see the new Meter.
99
+ Subsequent calls to getOrCreateMeter() for those Meters create a new Meter with all MeterFilters applied.
100
+ If multiple concurrent calls to getOrCreateMeter() interleave, it's possible not all see the new Meter.
101
101
We ideally want both to get the new meter, but we don't want to pay the cost associated with that level of safety
102
102
given the expected rarity of this situation happening, so we aim to get as close as possible for cheap.
103
103
You can’t perform that action at this time.
0 commit comments