diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-12-17 09:15:42 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-12-17 09:44:51 +0100 |
commit | a1789ddde42033f1b05cc4929491214ee6e79383 (patch) | |
tree | 63615735c4ddffaaabf2428946bb26f90899f7bf /maintenance/waitForSlave.php | |
parent | 9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff) |
Update to MediaWiki 1.26.0
Diffstat (limited to 'maintenance/waitForSlave.php')
-rw-r--r-- | maintenance/waitForSlave.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/maintenance/waitForSlave.php b/maintenance/waitForSlave.php index c9b1abba..50665ef2 100644 --- a/maintenance/waitForSlave.php +++ b/maintenance/waitForSlave.php @@ -1,6 +1,6 @@ <?php /** - * Wait until slave lag goes under a certain value. + * Wait for the slaves to catch up to the master position. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,18 +25,13 @@ require_once __DIR__ . '/Maintenance.php'; /** - * Maintenance script to wait until slave lag goes under a certain value. + * Maintenance script to wait for the slaves to catch up to the master position. * * @ingroup Maintenance */ class WaitForSlave extends Maintenance { - public function __construct() { - parent::__construct(); - $this->addArg( 'maxlag', 'How long to wait for the slaves, default 10 seconds', false ); - } - public function execute() { - wfWaitForSlaves( $this->getArg( 0, 10 ) ); + wfWaitForSlaves(); } } |