]> source.dussan.org Git - nextcloud-server.git/commitdiff
backport https://github.com/owncloud/core/pull/3329
authorFrank Karlitschek <frank@owncloud.org>
Mon, 13 May 2013 01:23:07 +0000 (03:23 +0200)
committerFrank Karlitschek <frank@owncloud.org>
Mon, 13 May 2013 01:23:07 +0000 (03:23 +0200)
lib/MDB2/Driver/sqlite3.php

index 8f057cfb6e8820c28f75cbf2d5478648db2f5902..a521870db1197e519765db8fcd0c1eac86aa1453 100644 (file)
@@ -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) {