From 8a4f27fe00cba96c02b09f97f00d63a394b5a5c0 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 11 Jul 2019 13:04:43 -0700 Subject: [PATCH] installer: make SqliteInstaller set "synchronous" for the job queue DB like the other DBs Change-Id: Ifc51ea735020fd7557c99b02bb7426d78b5f8b47 --- includes/installer/SqliteInstaller.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/installer/SqliteInstaller.php b/includes/installer/SqliteInstaller.php index 17332ff59c..cf91ccd9fc 100644 --- a/includes/installer/SqliteInstaller.php +++ b/includes/installer/SqliteInstaller.php @@ -406,6 +406,7 @@ EOT; 'type' => 'sqlite', 'dbname' => \"{\$wgDBname}_jobqueue\", 'tablePrefix' => '', + 'variables' => [ 'synchronous' => 'NORMAL' ], 'dbDirectory' => \$wgSQLiteDataDir, 'trxMode' => 'IMMEDIATE', 'flags' => 0 -- 2.20.1