This is an automated email from the ASF dual-hosted git repository.
dlmarion pushed a commit to branch elasticity
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/elasticity by this push:
new 996952ff55 Added missing Fate.shutdown in FateOpsCommandsIT (#4428)
996952ff55 is described below
commit 996952ff5515c1525788cf6cbdee4a752f440229
Author: Dave Marion <[email protected]>
AuthorDate: Fri Mar 29 09:03:48 2024 -0400
Added missing Fate.shutdown in FateOpsCommandsIT (#4428)
---
test/src/main/java/org/apache/accumulo/test/fate/FateOpsCommandsIT.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/test/src/main/java/org/apache/accumulo/test/fate/FateOpsCommandsIT.java
b/test/src/main/java/org/apache/accumulo/test/fate/FateOpsCommandsIT.java
index b716d12d5f..5bddd4f35c 100644
--- a/test/src/main/java/org/apache/accumulo/test/fate/FateOpsCommandsIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/fate/FateOpsCommandsIT.java
@@ -267,6 +267,8 @@ public abstract class FateOpsCommandsIT extends
ConfigurableMacBase
|| result.contains(
"Fate ID Filters: [" + fateId2.canonical() + ", " +
fateId1.canonical() + "]"));
assertTrue(result.contains("Instance Types Filters: [" +
store.type().name() + "]"));
+
+ fate.shutdown(10, TimeUnit.MINUTES);
}
@Test