diff --git a/extensions/schema-compare/src/schemaCompareMainWindow.ts b/extensions/schema-compare/src/schemaCompareMainWindow.ts index 46962850d0..2273450f75 100644 --- a/extensions/schema-compare/src/schemaCompareMainWindow.ts +++ b/extensions/schema-compare/src/schemaCompareMainWindow.ts @@ -953,7 +953,7 @@ export class SchemaCompareMainWindow { }); } - private async constructEndpointInfo(endpoint: mssql.SchemaCompareEndpointInfo, caller: string): Promise { + private async constructEndpointInfo(endpoint: mssql.SchemaCompareEndpointInfo, caller: string): Promise { let ownerUri; let endpointInfo; if (endpoint && endpoint.endpointType === mssql.SchemaCompareEndpointType.Database) { diff --git a/src/sql/workbench/services/objectExplorer/browser/treeUpdateUtils.ts b/src/sql/workbench/services/objectExplorer/browser/treeUpdateUtils.ts index 9b874590be..7c6970c1e1 100644 --- a/src/sql/workbench/services/objectExplorer/browser/treeUpdateUtils.ts +++ b/src/sql/workbench/services/objectExplorer/browser/treeUpdateUtils.ts @@ -203,7 +203,7 @@ export class TreeUpdateUtils { * @param connectionManagementService Connection management service instance * @param objectExplorerService Object explorer service instance */ - public static async connectAndCreateOeSession(connection: IConnectionProfile, options: IConnectionCompletionOptions, + public static async connectAndCreateOeSession(connection: IConnectionProfile, options: IConnectionCompletionOptions, connectionManagementService: IConnectionManagementService, objectExplorerService: IObjectExplorerService, tree: ITree): Promise { const connectedConnection = await TreeUpdateUtils.connectIfNotConnected(connection, options, connectionManagementService, tree); if (connectedConnection) {