This is an automated email from the ASF dual-hosted git repository.
ctubbsii 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 f2f61729f3 Stabilize WatchTheWatchCountIT
f2f61729f3 is described below
commit f2f61729f3eec7499324434d4ca9f6610200c427
Author: Christopher Tubbs <[email protected]>
AuthorDate: Thu Oct 24 17:16:23 2024 -0400
Stabilize WatchTheWatchCountIT
Reduce the expected minimum number of ZooKeeper watchers to avoid IT
from failing due to slightly fewer watchers being needed than previously
expected.
---
.../java/org/apache/accumulo/test/functional/WatchTheWatchCountIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/test/src/main/java/org/apache/accumulo/test/functional/WatchTheWatchCountIT.java
b/test/src/main/java/org/apache/accumulo/test/functional/WatchTheWatchCountIT.java
index 218b1ab1e7..a9def8a96c 100644
---
a/test/src/main/java/org/apache/accumulo/test/functional/WatchTheWatchCountIT.java
+++
b/test/src/main/java/org/apache/accumulo/test/functional/WatchTheWatchCountIT.java
@@ -64,7 +64,7 @@ public class WatchTheWatchCountIT extends ConfigurableMacBase
{
c.tableOperations().list();
String zooKeepers = ClientProperty.INSTANCE_ZOOKEEPERS.getValue(props);
// base number of watchers 110 to 125, and 15 to 20 per table in a
single-node instance.
- final long MIN = 150L;
+ final long MIN = 125L;
final long MAX = 250L;
long total = 0;
final HostAndPort hostAndPort = HostAndPort.fromString(zooKeepers);