This is an automated email from the ASF dual-hosted git repository. adar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 09ffff48d4122f4ea44fa4ff841cc089a2fc1aea Author: Adar Dembo <[email protected]> AuthorDate: Tue Oct 1 12:16:30 2019 -0700 TestMiniKuduCluster: deflake testHiveMetastoreIntegration 50 seconds for the entire test isn't enough considering just the HMS itself is given up to 60s to start (see mini_hms.cc). So let's double it. Change-Id: I53fb1fa826e3c5c5d9d032fa88bf584300aeedfe Reviewed-on: http://gerrit.cloudera.org:8080/14335 Reviewed-by: Alexey Serbin <[email protected]> Reviewed-by: Hao Hao <[email protected]> Tested-by: Kudu Jenkins --- .../src/test/java/org/apache/kudu/test/TestMiniKuduCluster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/kudu-test-utils/src/test/java/org/apache/kudu/test/TestMiniKuduCluster.java b/java/kudu-test-utils/src/test/java/org/apache/kudu/test/TestMiniKuduCluster.java index 68b3933..63cf68b 100644 --- a/java/kudu-test-utils/src/test/java/org/apache/kudu/test/TestMiniKuduCluster.java +++ b/java/kudu-test-utils/src/test/java/org/apache/kudu/test/TestMiniKuduCluster.java @@ -97,7 +97,7 @@ public class TestMiniKuduCluster { } } - @Test(timeout = 50000) + @Test(timeout = 100000) public void testHiveMetastoreIntegration() throws Exception { try (MiniKuduCluster cluster = new MiniKuduCluster.MiniKuduClusterBuilder() .numMasterServers(NUM_MASTERS)
