Skip to content

Commit

Permalink
fix: display partial results in deploy all scenarios (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlocph authored Mar 15, 2024
1 parent 8a95bd6 commit e246c9a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/dashboard/worker/gitops.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,12 @@ func processReleaseEvent(
}
deployResult.GitopsRef = sha
deployResults = append(deployResults, deployResult)

event.Results = deployResults
err = updateEvent(store, event)
if err != nil {
logrus.Warnf("could not update event status %v", err)
}
}

return deployResults, nil
Expand Down

0 comments on commit e246c9a

Please sign in to comment.