MediaWiki
REL1_24
|
00001 <?php 00025 require_once __DIR__ . '/Maintenance.php'; 00026 00032 class WaitForSlave extends Maintenance { 00033 public function __construct() { 00034 parent::__construct(); 00035 $this->addArg( 'maxlag', 'How long to wait for the slaves, default 10 seconds', false ); 00036 } 00037 00038 public function execute() { 00039 wfWaitForSlaves( $this->getArg( 0, 10 ) ); 00040 } 00041 } 00042 00043 $maintClass = "WaitForSlave"; 00044 require_once RUN_MAINTENANCE_IF_MAIN;