diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-05-06 17:05:34 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-05-06 17:57:28 +0200 |
commit | e2d8a4544db2e9210daa071840db3482b12fad9a (patch) | |
tree | 28f1b0a9f3edce73a51ff47d5b2ce568ba5ab1c9 /autotest.sh | |
parent | 09c507246d6795eb389c2b97af5db0200800637e (diff) | |
download | nextcloud-server-e2d8a4544db2e9210daa071840db3482b12fad9a.tar.gz nextcloud-server-e2d8a4544db2e9210daa071840db3482b12fad9a.zip |
Wait a while even after successful conect ...
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |