aboutsummaryrefslogtreecommitdiffstats
path: root/autotest.sh
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-05-06 17:05:34 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-05-06 17:57:28 +0200
commite2d8a4544db2e9210daa071840db3482b12fad9a (patch)
tree28f1b0a9f3edce73a51ff47d5b2ce568ba5ab1c9 /autotest.sh
parent09c507246d6795eb389c2b97af5db0200800637e (diff)
downloadnextcloud-server-e2d8a4544db2e9210daa071840db3482b12fad9a.tar.gz
nextcloud-server-e2d8a4544db2e9210daa071840db3482b12fad9a.zip
Wait a while even after successful conect ...
Diffstat (limited to 'autotest.sh')
-rwxr-xr-xautotest.sh2
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