Merge pull request #10 from nextcloud/revert-9-increase-timeout-for-postgres

Revert "Adjust the timeout for postgres to the one of mysql"
This commit is contained in:
Joas Schilling 2020-06-29 12:29:09 +02:00 коммит произвёл GitHub
Родитель bc98828ea0 28052aea74
Коммит c4c5742cc8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -44,8 +44,8 @@ if [ "$DB" == "pgsql" ] ; then
createuser -U travis -s oc_autotest
else
echo "Waiting for Postgres to be available ..."
if ! ../server/apps/files_external/tests/env/wait-for-connection $DATABASEHOST 5432 600; then
echo "[ERROR] Waited 600 seconds for $DATABASEHOST, no response" >&2
if ! ../server/apps/files_external/tests/env/wait-for-connection $DATABASEHOST 5432 60; then
echo "[ERROR] Waited 60 seconds for $DATABASEHOST, no response" >&2
exit 1
fi
echo "Give it 10 additional seconds ..."