diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-03 11:03:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-03 11:03:21 +0100 |
commit | f697c594a0bc0770715da2a747b0ced39644e9fd (patch) | |
tree | 7be2de01b3f523d8254a360b10af50a9ebc5d10b | |
parent | 9ebbb3c6549200cc3c0c2a5daeabd5e64f898133 (diff) | |
parent | 83770651bc25e4919c55b5e36024e379f0b1d4e2 (diff) | |
download | nextcloud-server-f697c594a0bc0770715da2a747b0ced39644e9fd.tar.gz nextcloud-server-f697c594a0bc0770715da2a747b0ced39644e9fd.zip |
Merge pull request #1993 from nextcloud/wait-600-seconds-for-mysqlmb4
adjust autotest.sh to also wait 600 seconds for mysqlmb4
-rwxr-xr-x | autotest.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autotest.sh b/autotest.sh index 61e7426ab99..f53d37ec09b 100755 --- a/autotest.sh +++ b/autotest.sh @@ -240,8 +240,8 @@ function execute_tests { echo "Waiting for MySQL(utf8mb4) initialisation ..." - if ! apps/files_external/tests/env/wait-for-connection $DATABASEHOST 3306 60; then - echo "[ERROR] Waited 60 seconds, no response" >&2 + if ! apps/files_external/tests/env/wait-for-connection $DATABASEHOST 3306 600; then + echo "[ERROR] Waited 600 seconds, no response" >&2 exit 1 fi sleep 1 |