Resetting subscriptions after AD tenant is changed in migration wizard (#14656)

* Resetting subscriptions after AD tenant is changed

* removing migration in progress info message at the end

* printing migration started errors in console.
This commit is contained in:
Aasim Khan
2021-03-10 18:23:39 -08:00
committed by GitHub
parent 50ac3b0fdf
commit 29c02e5746
2 changed files with 4 additions and 2 deletions

View File

@@ -524,11 +524,10 @@ export class MigrationStateModel implements Model, vscode.Disposable {
vscode.window.showInformationMessage(localize("sql.migration.starting.migration.message", 'Starting migration for database {0} to {1}', db, this._targetServerInstance.name));
}
} catch (e) {
console.log(e);
vscode.window.showInformationMessage(e);
}
});
vscode.window.showInformationMessage(constants.MIGRATION_STARTED);
}
}