diff --git a/extensions/mssql/src/sqlClusterLookUp.ts b/extensions/mssql/src/sqlClusterLookUp.ts index 86a1b00cb257..d8223bce3b2f 100644 --- a/extensions/mssql/src/sqlClusterLookUp.ts +++ b/extensions/mssql/src/sqlClusterLookUp.ts @@ -149,7 +149,7 @@ async function createSqlClusterConnInfo(sqlConnInfo: azdata.IConnectionProfile | async function getClusterController(controllerEndpoint: string, connInfo: ConnectionParam): Promise { const bdcApi = await vscode.extensions.getExtension(bdc.constants.extensionName).activate(); - let authType: bdc.AuthType = connInfo.options[constants.authenticationTypePropName] === AuthType.Integrated ? 'integrated' : 'basic'; + let authType: bdc.AuthType = connInfo.options[constants.authenticationTypePropName].toLowerCase() === AuthType.Integrated ? 'integrated' : 'basic'; const controller = bdcApi.getClusterController( controllerEndpoint, authType,