We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bfa19e commit 2a317d9Copy full SHA for 2a317d9
pkg/workflow/cd/CdWorkflowRunnerService.go
@@ -65,6 +65,7 @@ func (impl *CdWorkflowRunnerServiceImpl) CheckIfWfrLatest(wfrId, pipelineId int)
65
66
func (impl *CdWorkflowRunnerServiceImpl) UpdateWfrStatus(dto *bean.CdWorkflowRunnerDto, status string, updatedBy int) error {
67
runnerDbObj := adapter.ConvertCdWorkflowRunnerDtoToDbObj(dto)
68
+ runnerDbObj.Status = status
69
runnerDbObj.UpdatedBy = int32(updatedBy)
70
runnerDbObj.UpdatedOn = time.Now()
71
err := impl.cdWorkflowRepository.UpdateWorkFlowRunner(runnerDbObj)
0 commit comments