From 25ae9afb9b8de264e878d2aa183119a3d2a00a5f Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 24 Oct 2017 15:42:30 -0700 Subject: [PATCH] Make runJobs.php treat --json value as case insensitive The docs mentioned "JSON", which did not actually work. Change-Id: Ie9802551d05f7d80d1db0fd316e36f4b35bbc521 --- maintenance/runJobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/runJobs.php b/maintenance/runJobs.php index 929b5c976c..af2a318bac 100644 --- a/maintenance/runJobs.php +++ b/maintenance/runJobs.php @@ -42,7 +42,7 @@ class RunJobs extends Maintenance { $this->addOption( 'type', 'Type of job to run', false, true ); $this->addOption( 'procs', 'Number of processes to use', false, true ); $this->addOption( 'nothrottle', 'Ignore job throttling configuration', false, false ); - $this->addOption( 'result', 'Set to JSON to print only a JSON response', false, true ); + $this->addOption( 'result', 'Set to "json" to print only a JSON response', false, true ); $this->addOption( 'wait', 'Wait for new jobs instead of exiting', false, false ); } -- 2.20.1