diff options
author | Aaron Schulz <aschulz@wikimedia.org> | 2014-07-28 17:38:56 -0700 |
---|---|---|
committer | Aaron Schulz <aschulz@wikimedia.org> | 2014-07-28 17:38:56 -0700 |
commit | baaf489633a8b00e698456d2a82234811af8d841 (patch) | |
tree | 6e8778c055f32fc1b6dcb653febd15c8e0cd211c /maintenance/runJobs.php | |
parent | 3cf8d2171f19878820038988f003ca263de78356 (diff) | |
download | mediawikicore-baaf489633a8b00e698456d2a82234811af8d841.tar.gz mediawikicore-baaf489633a8b00e698456d2a82234811af8d841.zip |
Set "has value" flag correctly for result parameter
Change-Id: I97eeef620ddfdda6f09abbfdf0388146d4d02e36
Diffstat (limited to 'maintenance/runJobs.php')
-rw-r--r-- | maintenance/runJobs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/runJobs.php b/maintenance/runJobs.php index c7578029b1f7..40605cebaed7 100644 --- a/maintenance/runJobs.php +++ b/maintenance/runJobs.php @@ -37,7 +37,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, false ); + $this->addOption( 'result', 'Set to JSON to print only a JSON response', false, true ); } public function memoryLimit() { |