SQL Edge deployment using Azure IoT hub (#11202)

* Azure IoT deployment type

* more updates

* organize fields

* a few more improvements

* resolve merge issues

* new rg improvement

* fix tests

* comments 1

* comments 2
This commit is contained in:
Alan Ren
2020-07-07 10:36:26 -07:00
committed by GitHub
parent 3084867d7e
commit 3cf48fb207
9 changed files with 798 additions and 38 deletions

View File

@@ -297,7 +297,7 @@ export class AccountManagementService implements IAccountManagementService {
// UI METHODS //////////////////////////////////////////////////////////
/**
* Opens the account list dialog
* @return Promise that finishes when the account list dialog opens
* @return Promise that finishes when the account list dialog closes
*/
public openAccountListDialog(): Thenable<void> {
let self = this;
@@ -308,9 +308,8 @@ export class AccountManagementService implements IAccountManagementService {
if (!self._accountDialogController) {
self._accountDialogController = self._instantiationService.createInstance(AccountDialogController);
}
self._accountDialogController.openAccountDialog();
resolve();
self._accountDialogController.accountDialog.onCloseEvent(resolve);
} catch (e) {
reject(e);
}