Skip to content

Commit

Permalink
Fix a compiler error (argoproj#1500)
Browse files Browse the repository at this point in the history
Fix a compiler error (argoproj#1500)
  • Loading branch information
ian-howell authored and sarabala1979 committed Jul 25, 2019
1 parent ca1d5e6 commit 414d6ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/controller/dag.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (d *dagContext) assertBranchFinished(targetTaskName string) bool {
// We should ensure that from the bottom to the top,
// all the nodes of this branch have at least one failure.
// If successful, we should continue to run down until the leaf node
taskNode := d.getTaskNode(targetTaskName)
taskNode := d.GetTaskNode(targetTaskName)
if taskNode == nil {
taskObject := d.getTask(targetTaskName)
if taskObject != nil {
Expand Down

0 comments on commit 414d6ce

Please sign in to comment.