From d296b6397e0acfddc57e9085e736e084969cdaeb Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 13 Oct 2020 15:10:11 -0700 Subject: [PATCH] Fix HDFS node for Integrated auth (#12906) (#12907) * Fix some HDFS issues * Undo other changes --- extensions/mssql/src/sqlClusterLookUp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/mssql/src/sqlClusterLookUp.ts b/extensions/mssql/src/sqlClusterLookUp.ts index 86a1b00cb2..d8223bce3b 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,