Merge "[FileBackend] Fixed parallelize check in doQuickOperationsInternal()."
authorReedy <reedy@wikimedia.org>
Thu, 17 May 2012 23:48:58 +0000 (23:48 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Thu, 17 May 2012 23:48:58 +0000 (23:48 +0000)
includes/filerepo/backend/FileBackendStore.php

index 62c32eb..9e0bc8e 100644 (file)
@@ -947,7 +947,7 @@ abstract class FileBackendStore extends FileBackend {
                wfProfileIn( __METHOD__ . '-' . $this->name );
                $status = Status::newGood();
 
-               $async = $this->parallelize;
+               $async = ( $this->parallelize === 'implicit' );
                $maxConcurrency = $this->concurrency; // throttle
 
                $statuses = array(); // array of (index => Status)