Skip to content

Commit b907e3f

Browse files
committed
fix: rename wfrId to wfrIdForDeploymentWithSpecificTrigger in redeploy payload
1 parent ddf9e21 commit b907e3f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Shared/Components/CICDHistory/service.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export const getModuleConfigured = (moduleName: string): Promise<ModuleConfigRes
312312
export const resourceConflictRedeploy = async ({ pipelineId, triggerId, appId }: ResourceConflictRedeployParamsType) =>
313313
post<never, ResourceConflictRedeployPayloadType>(ROUTES.CD_TRIGGER_POST, {
314314
pipelineId: +pipelineId,
315-
wfrId: +triggerId,
315+
wfrIdForDeploymentWithSpecificTrigger: +triggerId,
316316
appId: +appId,
317317
redeployHelmReleaseWithTakeOwnership: true,
318318
})

src/Shared/Components/CICDHistory/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,7 @@ export interface ResourceConflictRedeployParamsType
911911
export interface ResourceConflictRedeployPayloadType {
912912
pipelineId: number
913913
appId: number
914-
wfrId: number
914+
wfrIdForDeploymentWithSpecificTrigger: number
915915
redeployHelmReleaseWithTakeOwnership: true
916916
}
917917

0 commit comments

Comments
 (0)