You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2016/11/10 18:49:45 UTC

[5/6] incubator-beam git commit: Increase WindowedWordCountIT timeout to 20 minutes

Increase WindowedWordCountIT timeout to 20 minutes


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/bf39dc65
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/bf39dc65
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/bf39dc65

Branch: refs/heads/master
Commit: bf39dc6509e307a516e9d23dadceb17c78811c12
Parents: 7e82e35
Author: Kenneth Knowles <kl...@google.com>
Authored: Wed Nov 9 19:26:46 2016 -0800
Committer: Kenneth Knowles <kl...@google.com>
Committed: Thu Nov 10 10:49:28 2016 -0800

----------------------------------------------------------------------
 .../src/test/java/org/apache/beam/examples/WindowedWordCountIT.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/bf39dc65/examples/java/src/test/java/org/apache/beam/examples/WindowedWordCountIT.java
----------------------------------------------------------------------
diff --git a/examples/java/src/test/java/org/apache/beam/examples/WindowedWordCountIT.java b/examples/java/src/test/java/org/apache/beam/examples/WindowedWordCountIT.java
index ccc2d5e..a5113c8 100644
--- a/examples/java/src/test/java/org/apache/beam/examples/WindowedWordCountIT.java
+++ b/examples/java/src/test/java/org/apache/beam/examples/WindowedWordCountIT.java
@@ -67,6 +67,7 @@ public class WindowedWordCountIT {
     WindowedWordCountITOptions options =
         TestPipeline.testingPipelineOptions().as(WindowedWordCountITOptions.class);
     options.setStreaming(isStreaming);
+    options.setTestTimeoutSeconds(1200L);
 
     // Note: currently unused because the example writes to BigQuery, but WindowedWordCount.Options
     // are tightly coupled to WordCount.Options, where the option is required.