From 3251b26317cb3cd6e69fb539ec680ca6232b933f Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 13 Oct 2020 14:35:22 -0700 Subject: [PATCH] Fix HDFS node for Integrated auth (#12906) * 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,