You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2020/05/20 17:59:20 UTC

[flink] branch release-1.11 updated: [FLINK-17730][CI] Increase 'no output timeout' to 15 minutes

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

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


The following commit(s) were added to refs/heads/release-1.11 by this push:
     new e321e48  [FLINK-17730][CI] Increase 'no output timeout' to 15 minutes
e321e48 is described below

commit e321e483fa0b3154e5e8417809bd669482783a13
Author: Robert Metzger <rm...@apache.org>
AuthorDate: Mon May 18 09:37:16 2020 +0200

    [FLINK-17730][CI] Increase 'no output timeout' to 15 minutes
---
 tools/azure_controller.sh | 2 +-
 tools/travis_watchdog.sh  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/azure_controller.sh b/tools/azure_controller.sh
index 5639ef2..6c0a74c 100755
--- a/tools/azure_controller.sh
+++ b/tools/azure_controller.sh
@@ -184,7 +184,7 @@ elif [ $STAGE != "$STAGE_CLEANUP" ]; then
     fi
 
 
-    TEST="$STAGE" "./tools/travis_watchdog.sh" 300
+    TEST="$STAGE" "./tools/travis_watchdog.sh" 900
     EXIT_CODE=$?
 elif [ $STAGE == "$STAGE_CLEANUP" ]; then
     echo "Cleaning up $CACHE_BUILD_DIR"
diff --git a/tools/travis_watchdog.sh b/tools/travis_watchdog.sh
index b27cbce..55b8452 100755
--- a/tools/travis_watchdog.sh
+++ b/tools/travis_watchdog.sh
@@ -39,7 +39,7 @@ echo "Build for commit ${TRAVIS_COMMIT} of ${TRAVIS_REPO_SLUG} [build ID: ${TRAV
 # =============================================================================
 
 # Number of seconds w/o output before printing a stack trace and killing $MVN
-MAX_NO_OUTPUT=${1:-600}
+MAX_NO_OUTPUT=${1:-900}
 
 # Number of seconds to sleep before checking the output again
 SLEEP_TIME=20