Browse Source

Wait a while even after successful conect ...

Thomas Müller 8 years ago
parent
commit
e2d8a4544d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      autotest.sh

+ 1 - 1
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