Skip to content

Commit

Permalink
fix typo for task.Status (#30978)
Browse files Browse the repository at this point in the history
  • Loading branch information
uturunku1 committed May 2, 2022
1 parent 488853b commit ea1f000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cloud/backend_runTasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func summarizeTaskResults(taskResults []*tfe.TaskResult) *taskResultSummary {
return &taskResultSummary{
unreachable: true,
}
} else if task.Status == "running" || task.Status == "pendingCountnding" {
} else if task.Status == "running" || task.Status == "pending" {
pendingCount++
} else if task.Status == "passed" {
passedCount++
Expand Down

0 comments on commit ea1f000

Please sign in to comment.