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
2 changes: 1 addition & 1 deletion pkg/apis/pipeline/v1beta1/taskrun_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ func (tr *TaskRun) GetTimeout() time.Duration {
// GetRunKey return the taskrun key for timeout handler map
func (tr *TaskRun) GetRunKey() string {
// The address of the pointer is a threadsafe unique identifier for the taskrun
return fmt.Sprintf("%s/%p", "TaskRun", tr)
return fmt.Sprintf("%s/%p", pipeline.TaskRunControllerName, tr)
}

// IsPartOfPipeline return true if TaskRun is a part of a Pipeline.
Expand Down