This is an automated email from the ASF dual-hosted git repository. ctubbsii 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 0ec176c400 Bumped max watch count from 200 to 300 (#5295) 0ec176c400 is described below commit 0ec176c400b573d3e1a5dc646023bb057b6f3927 Author: Dave Marion <dlmar...@apache.org> AuthorDate: Thu Jan 30 11:04:32 2025 -0500 Bumped max watch count from 200 to 300 (#5295) WatchTheWatchCountIT has been failing in main (again). A recent change lowered the max watch count down to 200. Running this locally about 10 times, only one time was it lower than 200. Bumped the max to 300 to get this test passing. This likely needs bumped to account for the test running a scan server and/or compactor process. --- .../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 e555030805..68c3ca2a97 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 @@ -66,7 +66,7 @@ public class WatchTheWatchCountIT extends ConfigurableMacBase { String zooKeepers = ClientProperty.INSTANCE_ZOOKEEPERS.getValue(props); // expect about 30-45 base + about 12 per table in a single-node 3-tserver instance final long MIN = 75L; - final long MAX = 200L; + final long MAX = 300L; long total = 0; final HostAndPort hostAndPort = HostAndPort.fromString(zooKeepers); for (int i = 0; i < 5; i++) {