This is an automated email from the ASF dual-hosted git repository. tzulitai pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-statefun.git
commit 914dc11441eb2bd51d650693532744a8d29d56c5 Author: Tzu-Li (Gordon) Tai <[email protected]> AuthorDate: Fri Dec 4 12:08:59 2020 +0800 [hotfix] [e2e] Add timeout to ExactlyOnceWithRemoteFnE2E --- .../apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java index 3e343cf..23452fe 100644 --- a/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java +++ b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java @@ -102,7 +102,7 @@ public class ExactlyOnceWithRemoteFnE2E { .withBuildContextFileFromClasspath("remote-module", "/remote-module/") .build(); - @Test + @Test(timeout = 1000 * 60 * 10) public void run() { final String kafkaAddress = kafka.getBootstrapServers();
