commit | e682c94fee4b8135369960dfcc9e2187df75c850 | [log] [tgz] |
---|---|---|
author | Michael Blow <michael.blow@couchbase.com> | Tue Nov 26 15:47:08 2019 -0500 |
committer | Michael Blow <mblow@apache.org> | Tue Nov 26 23:49:18 2019 +0000 |
tree | 6c4d1158b3e8f39bf221e89f4ea855cb05e3b4fa | |
parent | f5cf736db8e43446ccc07d0afeab458a249be45d [diff] |
[NO ISSUE] Increase start timeout to 90s for sample cluster start Change-Id: I75d14ffe12a59ea84d2cac3cf2853ee86d745bff Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/4364 Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Reviewed-by: Till Westmann <tillw@apache.org> Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
diff --git a/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat b/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat index 652abff..1d874c2 100644 --- a/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat +++ b/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat
@@ -108,7 +108,7 @@ start /MIN "cc" cmd /c "echo See output in %LOGSDIR%\cc.log && "%INSTALLDIR%\bin\${CC_COMMAND}" -config-file "%CLUSTERDIR%\conf\cc.conf" >>"%LOGSDIR%\cc.log" 2>&1" echo. -call "%INSTALLDIR%\bin\${HELPER_COMMAND}" wait_for_cluster -timeout 30 +call "%INSTALLDIR%\bin\${HELPER_COMMAND}" wait_for_cluster -timeout 90 if %ERRORLEVEL% EQU 0 ( goto :END )
diff --git a/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.sh b/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.sh index 9268bed..34c3a0f 100755 --- a/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.sh +++ b/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.sh
@@ -129,5 +129,5 @@ "$INSTALLDIR/bin/${NC_SERVICE_COMMAND}" -logdir - -config-file "$CLUSTERDIR/conf/blue.conf" >> "$LOGSDIR/blue-service.log" 2>&1 & "$INSTALLDIR/bin/${NC_SERVICE_COMMAND}" -logdir - >> "$LOGSDIR/red-service.log" 2>&1 & "$INSTALLDIR/bin/${CC_COMMAND}" -config-file "$CLUSTERDIR/conf/cc.conf" >> "$LOGSDIR/cc.log" 2>&1 & -"$INSTALLDIR/bin/${HELPER_COMMAND}" wait_for_cluster -timeout 30 +"$INSTALLDIR/bin/${HELPER_COMMAND}" wait_for_cluster -timeout 90 exit $?