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