1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Change default SQLite timeout to 60s; improves #67

Real-world use suggests 5s is inadequate. Rather than bumping up small amounts as things break, it makes more sense to wait a very long time and investigate possible long-term solutions later, once logging is implemented.
This commit is contained in:
J. King 2017-11-25 17:44:34 -05:00
parent 11b2066922
commit 4f85739d20

View file

@ -24,7 +24,7 @@ class Conf {
/** @var string Encryption key to use for SQLite database (if using a version of SQLite with SEE) */
public $dbSQLite3Key = "";
/** @var integer Number of seconds for SQLite to wait before returning a timeout error when writing to the database */
public $dbSQLite3Timeout = 5;
public $dbSQLite3Timeout = 60;
/** @var string Class of the user management driver in use (Internal by default) */
public $userDriver = User\Internal\Driver::class;