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:
authorFrank Karlitschek <frank@owncloud.org>2013-05-13 05:24:54 +0400
committerFrank Karlitschek <frank@owncloud.org>2013-05-13 05:24:54 +0400
commitea71a5a781c807ad7ee976f6adf05830f17a1a44 (patch)
tree29f9d4d5f87c48e104437865889746616530319d
parent6be497cb3f2ee28018d896d1a067e67ee841f752 (diff)
backport https://github.com/owncloud/core/pull/3329
-rw-r--r--lib/MDB2/Driver/sqlite3.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php
index 9757e4faf94..af64b4b0d2e 100644
--- a/lib/MDB2/Driver/sqlite3.php
+++ b/lib/MDB2/Driver/sqlite3.php
@@ -388,7 +388,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common
$php_errormsg = '';
$this->connection = new SQLite3($database_file);
if(is_callable(array($this->connection,'busyTimeout'))) {//busy timout is only available in php>=5.3
- $this->connection->busyTimeout(100);
+ $this->connection->busyTimeout(60000);
}
$this->_lasterror = $this->connection->lastErrorMsg();
if (!$this->connection) {