X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FServiceWiring.php;h=5131917d945fbd62af129df207574cb16660280d;hb=45a6a7ad6771ed4c94f7a9c568ffeeca4935ca87;hp=08d343b1b2b2da588206c83a43cbd55ff8c84040;hpb=4d3549ad71a9a7b95569e962c12ee7cb05bbb473;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/ServiceWiring.php b/includes/ServiceWiring.php index 08d343b1b2..5131917d94 100644 --- a/includes/ServiceWiring.php +++ b/includes/ServiceWiring.php @@ -61,7 +61,10 @@ return [ ); $class = MWLBFactory::getLBFactoryClass( $lbConf ); - return new $class( $lbConf ); + $instance = new $class( $lbConf ); + MWLBFactory::setSchemaAliases( $instance ); + + return $instance; }, 'DBLoadBalancer' => function ( MediaWikiServices $services ) {