Fix arc controller connect (#11995)

This commit is contained in:
Charles Gagnon
2020-08-27 18:01:02 -07:00
committed by GitHub
parent 70399be699
commit c04f2aa110
2 changed files with 2 additions and 2 deletions

View File

@@ -121,7 +121,7 @@ export class ConnectToControllerDialog extends InitializingComponent {
rememberPassword: this.rememberPwCheckBox.checked ?? false,
resources: []
};
const controllerModel = new ControllerModel(this._treeDataProvider, controllerInfo);
const controllerModel = new ControllerModel(this._treeDataProvider, controllerInfo, this.passwordInputBox.value);
try {
// Validate that we can connect to the controller, this also populates the controllerRegistration from the connection response.
await controllerModel.refresh(false);

View File

@@ -1,4 +1,4 @@
{
"azdata.displayName": "azdata",
"azdata.description": "Support for azdata"
"azdata.description": "Support for Azure Data CLI. See https://docs.microsoft.com/cli/azure/?view=azure-cli-latest for more information."
}