X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FgetReplicaServer.php;h=554e373e8bdcabaa71c3cf701c313043fbe65cb6;hb=ae031e237eab8e2023d0fe128f9749a8a43ea439;hp=c0c628494e071af54cdbcb76676266df7396a750;hpb=40ced7e89ca9cd6896cd37b4b35051ed5754eb44;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;