Skip to content

Commit 17dd935

Browse files
committed
Remove unused values
1 parent 19bee17 commit 17dd935

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/commands/api/deployWorkspaceProjectApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export async function deployWorkspaceProjectApi(context: IActionContext, deployW
3333
rootFolder,
3434
srcPath: srcPath ? Uri.file(srcPath).fsPath : undefined,
3535
dockerfilePath: dockerfilePath ? Uri.file(dockerfilePath).fsPath : undefined,
36-
suppressConfirmation,
3736
ignoreExistingDeploySettings,
3837
shouldSaveDeploySettings: !!shouldSaveDeploySettings,
3938
});

src/commands/deployWorkspaceProject/deployWorkspaceProject.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { type SetTelemetryProps } from "../../telemetry/SetTelemetryProps";
1111
import { type DeployWorkspaceProjectNotificationTelemetryProps as NotificationTelemetryProps } from "../../telemetry/commandTelemetryProps";
1212
import { ContainerAppItem, isIngressEnabled, type ContainerAppModel } from "../../tree/ContainerAppItem";
1313
import { ManagedEnvironmentItem } from "../../tree/ManagedEnvironmentItem";
14-
import { createActivityContext } from "../../utils/activity/activityUtils";
1514
import { localize } from "../../utils/localize";
1615
import { type DeployWorkspaceProjectResults } from "../api/vscode-azurecontainerapps.api";
1716
import { browseContainerApp } from "../browseContainerApp";
@@ -28,9 +27,6 @@ export async function deployWorkspaceProject(context: IActionContext & Partial<D
2827
const subscription: AzureSubscription = await subscriptionExperience(context, ext.rgApiV2.resources.azureResourceTreeDataProvider);
2928
const subscriptionContext: ISubscriptionContext = createSubscriptionContext(subscription);
3029

31-
const activityContext = await createActivityContext();
32-
activityContext.activityChildren = [];
33-
3430
const deployWorkspaceProjectInternalContext: DeployWorkspaceProjectInternalContext = Object.assign(context, {
3531
...subscriptionContext,
3632
subscription

0 commit comments

Comments
 (0)