Revert "Support AD in cluster connection dialog (#7367)" (#7444)

This reverts commit 9f065b2b5a.
This commit is contained in:
Karl Burtram
2019-10-01 10:30:38 -07:00
committed by GitHub
parent 3202e46930
commit 19be0d0ff3
15 changed files with 107 additions and 2244 deletions

View File

@@ -56,7 +56,7 @@ function registerCommands(context: vscode.ExtensionContext, treeDataProvider: Co
vscode.commands.registerCommand(ManageControllerCommand, async (node: ControllerNode) => {
const title: string = `${localize('bdc.dashboard.title', "Big Data Cluster Dashboard -")} ${ControllerNode.toIpAndPort(node.url)}`;
const dashboard: BdcDashboard = new BdcDashboard(title, new BdcDashboardModel(node.url, node.auth, node.username, node.password));
const dashboard: BdcDashboard = new BdcDashboard(title, new BdcDashboardModel(node.url, node.username, node.password));
dashboard.showDashboard();
});
}
@@ -92,7 +92,7 @@ async function deleteBdcController(treeDataProvider: ControllerTreeDataProvider,
}
function deleteControllerInternal(treeDataProvider: ControllerTreeDataProvider, controllerNode: ControllerNode): void {
let deleted = treeDataProvider.deleteController(controllerNode.url, controllerNode.auth, controllerNode.username);
let deleted = treeDataProvider.deleteController(controllerNode.url, controllerNode.username);
if (deleted) {
treeDataProvider.saveControllers();
}