Aaron Schulz has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/249687

Change subject: Fix broken boilerplate maxjobs default in RunJobs.php
......................................................................

Fix broken boilerplate maxjobs default in RunJobs.php

Change-Id: I3195b3b7b05e8440e4c5af7a95471eeb94354c5c
---
M rpc/RunJobs.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/87/249687/1

diff --git a/rpc/RunJobs.php b/rpc/RunJobs.php
index 2085ab5..c984c2d 100755
--- a/rpc/RunJobs.php
+++ b/rpc/RunJobs.php
@@ -37,7 +37,7 @@
        $runner = new JobRunner();
        $response = $runner->run( array(
                'type'     => isset( $_GET['type'] ) ? $_GET['type'] : false,
-               'maxJobs'  => isset( $_GET['maxjobs'] ) ? $_GET['maxjobs'] : 1,
+               'maxJobs'  => isset( $_GET['maxjobs'] ) ? $_GET['maxjobs'] : 
false,
                'maxTime'  => isset( $_GET['maxtime'] ) ? $_GET['maxtime'] : 30
        ) );
 

-- 
To view, visit https://gerrit.wikimedia.org/r/249687
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3195b3b7b05e8440e4c5af7a95471eeb94354c5c
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Aaron Schulz <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to