Skip to content

Commit

Permalink
Revert "Fix Azure Environment Selector microsoft#133"
Browse files Browse the repository at this point in the history
This reverts commit 09e0966.
  • Loading branch information
Michael Boucher committed Mar 30, 2020
1 parent 13d1a78 commit 2c3cd9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tree/logic-app/LogicAppsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2c3cd9a

Please sign in to comment.