Move IDatabase/IMaintainableDatabase to Rdbms namespace
[lhc/web/wiklou.git] / includes / libs / rdbms / lbfactory / LBFactory.php
index 7a2ad3f..f8142bf 100644 (file)
@@ -28,12 +28,8 @@ use Wikimedia\ScopedCallback;
 use BagOStuff;
 use EmptyBagOStuff;
 use WANObjectCache;
-use DatabaseDomain;
 use Exception;
 use RuntimeException;
-use ILoadBalancer;
-use IDatabase;
-use LoadBalancer;
 use DBTransactionError;
 use DBReplicationWaitError;
 
@@ -339,7 +335,7 @@ abstract class LBFactory implements ILBFactory {
                $masterPositions = array_fill( 0, count( $lbs ), false );
                foreach ( $lbs as $i => $lb ) {
                        if ( $lb->getServerCount() <= 1 ) {
-                               // Bug 27975 - Don't try to wait for replica DBs if there are none
+                               // T29975 - Don't try to wait for replica DBs if there are none
                                // Prevents permission error when getting master position
                                continue;
                        } elseif ( $opts['ifWritesSince']