X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FgetReplicaServer.php;h=554e373e8bdcabaa71c3cf701c313043fbe65cb6;hb=3599ce72b0fe2594bd3ae8c902555040b8a91d28;hp=c0c628494e071af54cdbcb76676266df7396a750;hpb=e83db4f33702a440dc6e16afc93d16cabf70e55e;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/getReplicaServer.php b/maintenance/getReplicaServer.php index c0c628494e..554e373e8b 100644 --- a/maintenance/getReplicaServer.php +++ b/maintenance/getReplicaServer.php @@ -30,7 +30,7 @@ use MediaWiki\MediaWikiServices; * * @ingroup Maintenance */ -class GetSlaveServer extends Maintenance { +class GetReplicaServer extends Maintenance { public function __construct() { parent::__construct(); $this->addOption( "group", "Query group to check specifically" ); @@ -53,5 +53,5 @@ class GetSlaveServer extends Maintenance { } } -$maintClass = GetSlaveServer::class; +$maintClass = GetReplicaServer::class; require_once RUN_MAINTENANCE_IF_MAIN;