Merge "Make runJobs.php treat --json value as case insensitive"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Wed, 25 Oct 2017 15:28:07 +0000 (15:28 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Wed, 25 Oct 2017 15:28:08 +0000 (15:28 +0000)
maintenance/runJobs.php

index 929b5c9..af2a318 100644 (file)
@@ -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 );
        }