Skip to content

Commit bdd67b1

Browse files
authored
Remove View Output popup after creation of Container Apps Environment (#245)
1 parent 9f8fbbe commit bdd67b1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/commands/createManagedEnvironment/ManagedEnvironmentCreateStep.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { ContainerAppsAPIClient } from "@azure/arm-appcontainers";
77
import { getResourceGroupFromId, LocationListStep } from "@microsoft/vscode-azext-azureutils";
88
import { AzureWizardExecuteStep } from "@microsoft/vscode-azext-utils";
9-
import { Progress, window } from "vscode";
9+
import { Progress } from "vscode";
1010
import { managedEnvironmentsAppProvider } from "../../constants";
1111
import { ext } from "../../extensionVariables";
1212
import { createContainerAppsAPIClient, createOperationalInsightsManagementClient } from '../../utils/azureClients';
@@ -51,9 +51,7 @@ export class ManagedEnvironmentCreateStep extends AzureWizardExecuteStep<IManage
5151
}
5252

5353
const createdKuEnv: string = localize('createKuEnv', 'Successfully created new Container Apps environment "{0}".', context.newManagedEnvironmentName);
54-
const viewOutput: string = localize('viewOutput', 'View Output');
5554
ext.outputChannel.appendLog(createdKuEnv);
56-
void window.showInformationMessage(createdKuEnv, viewOutput).then(() => ext.outputChannel.show());
5755
}
5856

5957
public shouldExecute(context: IManagedEnvironmentContext): boolean {

0 commit comments

Comments
 (0)