You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2018/08/13 17:01:30 UTC

[beam] branch master updated: Increase timeout on test to reduce flakiness.

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

pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 5bbc602  Increase timeout on test to reduce flakiness.
5bbc602 is described below

commit 5bbc60201f5527464e00a17ed8e04c49f01f9d52
Author: Mikhail Gryzykhin <mi...@google.com>
AuthorDate: Fri Aug 10 11:55:39 2018 -0700

    Increase timeout on test to reduce flakiness.
---
 .../test/java/org/apache/beam/runners/flink/PortableExecutionTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runners/flink/src/test/java/org/apache/beam/runners/flink/PortableExecutionTest.java b/runners/flink/src/test/java/org/apache/beam/runners/flink/PortableExecutionTest.java
index 19099f2..3c8bcd8 100644
--- a/runners/flink/src/test/java/org/apache/beam/runners/flink/PortableExecutionTest.java
+++ b/runners/flink/src/test/java/org/apache/beam/runners/flink/PortableExecutionTest.java
@@ -170,7 +170,7 @@ public class PortableExecutionTest implements Serializable {
             options,
             Collections.EMPTY_LIST);
     jobInvocation.start();
-    long timeout = System.currentTimeMillis() + 30 * 1000;
+    long timeout = System.currentTimeMillis() + 60 * 1000;
     while (jobInvocation.getState() != Enum.DONE && System.currentTimeMillis() < timeout) {
       Thread.sleep(1000);
     }