From 2c3cd9a6e291560b6c59fb1dd96d2ffa2b538195 Mon Sep 17 00:00:00 2001 From: Michael Boucher Date: Sun, 29 Mar 2020 21:36:07 -0400 Subject: [PATCH] Revert "Fix Azure Environment Selector #133" This reverts commit 09e09665f577ad81a7b46a7a2bfd259ea8d7cc0b. --- src/tree/integration-account/IntegrationAccountsProvider.ts | 2 +- src/tree/logic-app/LogicAppsProvider.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tree/integration-account/IntegrationAccountsProvider.ts b/src/tree/integration-account/IntegrationAccountsProvider.ts index a3f96703..93acf30e 100644 --- a/src/tree/integration-account/IntegrationAccountsProvider.ts +++ b/src/tree/integration-account/IntegrationAccountsProvider.ts @@ -24,7 +24,7 @@ export class IntegrationAccountProvider implements IChildProvider { this.nextLink = undefined; } - const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId, node.environment.resourceManagerEndpointUrl); + const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId); addExtensionUserAgent(client); const integrationAccounts = this.nextLink === undefined diff --git a/src/tree/logic-app/LogicAppsProvider.ts b/src/tree/logic-app/LogicAppsProvider.ts index 4bbfcbcc..4bbb8924 100644 --- a/src/tree/logic-app/LogicAppsProvider.ts +++ b/src/tree/logic-app/LogicAppsProvider.ts @@ -28,7 +28,7 @@ export class LogicAppsProvider implements IChildProvider { this.nextLink = undefined; } - const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId, node.environment.resourceManagerEndpointUrl); + const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId); addExtensionUserAgent(client); const logicApps = this.nextLink === undefined