Skip to content

Commit

Permalink
fixes ExternalCompactionMetricsIT.java
Browse files Browse the repository at this point in the history
The test was failing because it was looking for a metrics prefix that
did not exist.
  • Loading branch information
keith-turner committed Sep 21, 2024
1 parent f47f835 commit a7be18c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void testMetrics() throws Exception {
if (shutdownTailer.get()) {
break;
}
if (s.startsWith("accumulo.tserver.compactions.")) {
if (s.startsWith("accumulo.compactor.")) {
queueMetrics.add(TestStatsDSink.parseStatsDMetric(s));
}
}
Expand Down

0 comments on commit a7be18c

Please sign in to comment.