Skip to content

Commit

Permalink
Fixed ExternalCompactionProgressIT metrics test (apache#5228)
Browse files Browse the repository at this point in the history
The metric prefix changed causing the test to fail
  • Loading branch information
dlmarion authored Jan 7, 2025
1 parent 671675c commit cc37af9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private static Thread getMetricsCheckerThread(AtomicLong totalEntriesRead,
}
TestStatsDSink.Metric metric = TestStatsDSink.parseStatsDMetric(s);
final String metricName = metric.getName();
if (!metricName.startsWith("accumulo.compactor.entries")) {
if (!metricName.startsWith("accumulo.compaction.entries")) {
continue;
}
int value = Integer.parseInt(metric.getValue());
Expand Down

0 comments on commit cc37af9

Please sign in to comment.