Skip to content
Merged
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
3 changes: 1 addition & 2 deletions taskflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import "io"

// TaskFlow represents a series of tasks
type TaskFlow struct {
name string
graph *eGraph
frozen bool
}
Expand Down Expand Up @@ -34,7 +33,7 @@ func (tf *TaskFlow) push(tasks ...*Task) {
}

func (tf *TaskFlow) Name() string {
return tf.name
return tf.graph.name
}

// NewStaticTask returns a attached static task
Expand Down