From 2a4ad3e32cf4f6814554ebcf09ac0250546a2549 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 22 Jan 2013 17:10:11 -0800 Subject: [PATCH] Disabled async "from-stash" upload for now. Change-Id: I81076e55264746dcfe49d2c928d30042aba0c684 --- includes/api/ApiUpload.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/api/ApiUpload.php b/includes/api/ApiUpload.php index 4afc8e72b8..1d7ba0fe08 100644 --- a/includes/api/ApiUpload.php +++ b/includes/api/ApiUpload.php @@ -53,6 +53,7 @@ class ApiUpload extends ApiBase { $request = $this->getMain()->getRequest(); // Check if async mode is actually supported $this->mParams['async'] = ( $this->mParams['async'] && !wfIsWindows() ); + $this->mParams['async'] = false; // XXX: disabled per bug 44080 // Add the uploaded file to the params array $this->mParams['file'] = $request->getFileName( 'file' ); $this->mParams['chunk'] = $request->getFileName( 'chunk' ); -- 2.20.1