Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkg/payload/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,11 @@ func SummaryForReason(reason, name string) string {
return fmt.Sprintf("the workload %s cannot roll out", name)
}
return "a workload cannot roll out"
case "MultipleErrors":
if len(name) > 0 {
return fmt.Sprintf("the workload %s cannot roll out", name)
}
return "multiple errors reconciling the payload"
}

if strings.HasPrefix(reason, "UpdatePayload") {
Expand Down