Merge "Lower timeout of upload stash -> image scaler requests"

This commit is contained in:
jenkins-bot 2015-03-16 15:10:21 +00:00 committed by Gerrit Code Review
commit 093bb2e23e

View file

@ -250,7 +250,7 @@ class SpecialUploadStash extends UnlistedSpecialPage {
// make a curl call to the scaler to create a thumbnail
$httpOptions = array(
'method' => 'GET',
'timeout' => 'default'
'timeout' => 5 // T90599 attempt to time out cleanly
);
$req = MWHttpRequest::factory( $scalerThumbUrl, $httpOptions, __METHOD__ );
$status = $req->execute();