This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch release-1.8
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 34d634e961ff1cc249deff0c9123e4fcda67d30f
Author: Till Rohrmann <trohrm...@apache.org>
AuthorDate: Mon Mar 4 10:50:54 2019 +0100

    [hotfix][tests] Speed up 
ZooKeeperLeaderRetrievalTest#testTimeoutOfFindConnectingAddress
    
    Decrease the timeout from 10s to 1s in testTimeoutOfFindConnectingAddress 
to speed up the test.
---
 .../flink/runtime/leaderelection/ZooKeeperLeaderRetrievalTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/flink-runtime/src/test/java/org/apache/flink/runtime/leaderelection/ZooKeeperLeaderRetrievalTest.java
 
b/flink-runtime/src/test/java/org/apache/flink/runtime/leaderelection/ZooKeeperLeaderRetrievalTest.java
index 42c1eca..4a1cf80 100644
--- 
a/flink-runtime/src/test/java/org/apache/flink/runtime/leaderelection/ZooKeeperLeaderRetrievalTest.java
+++ 
b/flink-runtime/src/test/java/org/apache/flink/runtime/leaderelection/ZooKeeperLeaderRetrievalTest.java
@@ -197,7 +197,7 @@ public class ZooKeeperLeaderRetrievalTest extends 
TestLogger{
         */
        @Test
        public void testTimeoutOfFindConnectingAddress() throws Exception {
-               FiniteDuration timeout = new FiniteDuration(10L, 
TimeUnit.SECONDS);
+               FiniteDuration timeout = new FiniteDuration(1L, 
TimeUnit.SECONDS);
 
                LeaderRetrievalService leaderRetrievalService = 
highAvailabilityServices.getJobManagerLeaderRetriever(HighAvailabilityServices.DEFAULT_JOB_ID);
                InetAddress result = 
LeaderRetrievalUtils.findConnectingAddress(leaderRetrievalService, timeout);

Reply via email to