This is an automated email from the ASF dual-hosted git repository. cshannon 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 35bedb8777 Trivial - Increase test timeout 35bedb8777 is described below commit 35bedb87773db832f3c951c4afbf9ef36a88dc5a Author: Christopher L. Shannon <cshan...@apache.org> AuthorDate: Sat Feb 1 13:06:33 2025 -0500 Trivial - Increase test timeout --- .../src/main/java/org/apache/accumulo/test/NewTableConfigurationIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/main/java/org/apache/accumulo/test/NewTableConfigurationIT.java b/test/src/main/java/org/apache/accumulo/test/NewTableConfigurationIT.java index 0f231758cb..999c1f0c9a 100644 --- a/test/src/main/java/org/apache/accumulo/test/NewTableConfigurationIT.java +++ b/test/src/main/java/org/apache/accumulo/test/NewTableConfigurationIT.java @@ -58,7 +58,7 @@ public class NewTableConfigurationIT extends SharedMiniClusterBase { @Override protected Duration defaultTimeout() { - return Duration.ofSeconds(30); + return Duration.ofSeconds(60); } @BeforeAll