Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-05-06 18:05:34 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-05-06 18:57:28 +0300
commite2d8a4544db2e9210daa071840db3482b12fad9a (patch)
tree28f1b0a9f3edce73a51ff47d5b2ce568ba5ab1c9 /autotest.sh
parent09c507246d6795eb389c2b97af5db0200800637e (diff)
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