From ca62984b8c659268c3bab4a4891fa4624a434bff Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 10 May 2017 21:37:09 -0500 Subject: [PATCH] Add 10 seconds sleep time after postgres startup Signed-off-by: Morris Jobke --- autotest.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autotest.sh b/autotest.sh index b9058efdbc..b00946d0c0 100755 --- a/autotest.sh +++ b/autotest.sh @@ -311,6 +311,8 @@ function execute_tests { echo "[ERROR] Waited 60 seconds, no response" >&2 exit 1 fi + echo "Give it 10 additional seconds ..." + sleep 10 if [ -z "$DRONE" ] ; then # no need to drop the DB when we are on CI dropdb -U "$DATABASEUSER" "$DATABASENAME" || true