Merge "Unbreak the DB updater by removing transaction from doUpdates()"

This commit is contained in:
jenkins-bot 2016-07-22 22:03:11 +00:00 committed by Gerrit Code Review
commit eaeeea4b29

View file

@ -410,7 +410,6 @@ abstract class DatabaseUpdater {
public function doUpdates( $what = [ 'core', 'extensions', 'stats' ] ) {
global $wgVersion;
$this->db->begin( __METHOD__ );
$what = array_flip( $what );
$this->skipSchema = isset( $what['noschema'] ) || $this->fileHandle !== null;
if ( isset( $what['core'] ) ) {
@ -432,8 +431,6 @@ abstract class DatabaseUpdater {
$this->writeSchemaUpdateFile();
$this->setAppliedUpdates( "$wgVersion-schema", $this->updatesSkipped );
}
$this->db->commit( __METHOD__ );
}
/**