This is an automated email from the ASF dual-hosted git repository.
kturner pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push:
new 1622b49c72 fixes ManagerAssignmentIT (#6266)
1622b49c72 is described below
commit 1622b49c72fdbdc67d69c2d744a5817914953e29
Author: Keith Turner <[email protected]>
AuthorDate: Fri Mar 27 14:38:06 2026 -0700
fixes ManagerAssignmentIT (#6266)
The test was killing two tservers and then not waiting long enough for
their ZK locks to timeout. Increased the time to wait. Not sure why
this test was passing before. Maybe something used to delete the ZK
locks or the maybe the ZK timeout was changed elsewhere?
---
.../java/org/apache/accumulo/test/functional/ManagerAssignmentIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/test/src/main/java/org/apache/accumulo/test/functional/ManagerAssignmentIT.java
b/test/src/main/java/org/apache/accumulo/test/functional/ManagerAssignmentIT.java
index 50827f3dac..74dc59c8db 100644
---
a/test/src/main/java/org/apache/accumulo/test/functional/ManagerAssignmentIT.java
+++
b/test/src/main/java/org/apache/accumulo/test/functional/ManagerAssignmentIT.java
@@ -122,7 +122,7 @@ public class ManagerAssignmentIT extends
AccumuloClusterHarness {
try (AccumuloClient client =
Accumulo.newClient().from(getClientProps()).build()) {
- Wait.waitFor(() -> client.instanceOperations().getTabletServers().size()
== 1);
+ Wait.waitFor(() -> client.instanceOperations().getTabletServers().size()
== 1, 60_000);
client.tableOperations().create(tableName);