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:23:07 +0400
committerFrank Karlitschek <frank@owncloud.org>2013-05-13 05:23:07 +0400
commitcc495ed6d88cff013811af9e329916d5441a1a96 (patch)
treef2e171b4e55307f50fffaeaefd12c008e50247bf
parentf2911e76bcbb88e1da5caa2ee4cebd2d78725999 (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 8f057cfb6e8..a521870db11 100644
--- a/lib/MDB2/Driver/sqlite3.php
+++ b/lib/MDB2/Driver/sqlite3.php
@@ -387,7 +387,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) {