Skip to content

Commit cc37af9

Browse files
authored
Fixed ExternalCompactionProgressIT metrics test (apache#5228)
The metric prefix changed causing the test to fail
1 parent 671675c commit cc37af9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/main/java/org/apache/accumulo/test/compaction/ExternalCompactionProgressIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private static Thread getMetricsCheckerThread(AtomicLong totalEntriesRead,
194194
}
195195
TestStatsDSink.Metric metric = TestStatsDSink.parseStatsDMetric(s);
196196
final String metricName = metric.getName();
197-
if (!metricName.startsWith("accumulo.compactor.entries")) {
197+
if (!metricName.startsWith("accumulo.compaction.entries")) {
198198
continue;
199199
}
200200
int value = Integer.parseInt(metric.getValue());

0 commit comments

Comments
 (0)