jenkins-bot has submitted this change and it was merged.

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(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



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: merged
Gerrit-Change-Id: I3195b3b7b05e8440e4c5af7a95471eeb94354c5c
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Aaron Schulz <[email protected]>
Gerrit-Reviewer: Aaron Schulz <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

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

Reply via email to