Skip to content

Commit

Permalink
Fix an error formatting in taskrun reconciler
Browse files Browse the repository at this point in the history
  • Loading branch information
NavidZ authored and tekton-robot committed Aug 20, 2020
1 parent f076ecd commit 9f1f85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/reconciler/taskrun/taskrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ func (c *Reconciler) reconcile(ctx context.Context, tr *v1beta1.TaskRun,
pod, err = c.createPod(ctx, tr, rtr)
if err != nil {
newErr := c.handlePodCreationError(ctx, tr, err)
logger.Error("Failed to create task run pod for task %q: %v", tr.Name, newErr)
logger.Errorf("Failed to create task run pod for taskrun %q: %v", tr.Name, newErr)
return newErr
}
go c.timeoutHandler.WaitTaskRun(tr, tr.Status.StartTime)
Expand Down

0 comments on commit 9f1f85b

Please sign in to comment.