This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new dc847b1 Fate Metric name not always reported, makes MetricsIT flaky (#2338) dc847b1 is described below commit dc847b1fb971efa81e6fcc24f126e93fcc1ddf8a Author: Dave Marion <dlmar...@apache.org> AuthorDate: Mon Nov 1 16:55:08 2021 -0400 Fate Metric name not always reported, makes MetricsIT flaky (#2338) * Remove FaTE metric name from the set of expected metric names in MetricsIT --- test/src/main/java/org/apache/accumulo/test/metrics/MetricsIT.java | 1 + 1 file changed, 1 insertion(+) diff --git a/test/src/main/java/org/apache/accumulo/test/metrics/MetricsIT.java b/test/src/main/java/org/apache/accumulo/test/metrics/MetricsIT.java index d891326..4036882 100644 --- a/test/src/main/java/org/apache/accumulo/test/metrics/MetricsIT.java +++ b/test/src/main/java/org/apache/accumulo/test/metrics/MetricsIT.java @@ -91,6 +91,7 @@ public class MetricsIT extends ConfigurableMacBase implements MetricsProducer { expectedMetricNames.remove(METRICS_SCAN_YIELDS); expectedMetricNames.remove(METRICS_UPDATE_ERRORS); expectedMetricNames.remove(METRICS_REPLICATION_QUEUE); + expectedMetricNames.remove(METRICS_FATE_TYPE_IN_PROGRESS); try (AccumuloClient client = Accumulo.newClient().from(getClientProperties()).build()) { String tableName = this.getClass().getSimpleName();