From 0624af8f2e9666fbe0820c0caca6d7ea3c6eeb7b Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 17 May 2012 16:17:01 -0700 Subject: [PATCH] [FileBackend] Fixed parallelize check in doQuickOperationsInternal(). Change-Id: Ia552a5094e61f418bc3fa8958f1a4869018be536 --- includes/filerepo/backend/FileBackendStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filerepo/backend/FileBackendStore.php b/includes/filerepo/backend/FileBackendStore.php index 5537e9378f..8593423a8f 100644 --- a/includes/filerepo/backend/FileBackendStore.php +++ b/includes/filerepo/backend/FileBackendStore.php @@ -945,7 +945,7 @@ abstract class FileBackendStore extends FileBackend { final protected function doQuickOperationsInternal( array $ops ) { $status = Status::newGood(); - $async = $this->parallelize; + $async = ( $this->parallelize === 'implicit' ); $maxConcurrency = $this->concurrency; // throttle $statuses = array(); // array of (index => Status) -- 2.20.1