From e2d8a4544db2e9210daa071840db3482b12fad9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 6 May 2016 17:05:34 +0200 Subject: [PATCH] Wait a while even after successful conect ... --- autotest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest.sh b/autotest.sh index 33c4ad50de8..6f966ac8852 100755 --- a/autotest.sh +++ b/autotest.sh @@ -240,7 +240,7 @@ function execute_tests { # Try to connect to the OCI host via sqlplus to ensure that the connection is already running for i in {1..48} do - if sqlplus "system/oracle@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(Host=$DATABASEHOST)(Port=1521))(CONNECT_DATA=(SID=XE)))" < /dev/null | grep 'Connected to'; then + if sqlplus "autotest/owncloud@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(Host=$DATABASEHOST)(Port=1521))(CONNECT_DATA=(SID=XE)))" < /dev/null | grep 'Connected to'; then break; fi sleep 5