Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #783 from MikaelSmith/fix-errors
Browse files Browse the repository at this point in the history
Fix error output when temporary pod fails
  • Loading branch information
MikaelSmith authored Mar 2, 2021
2 parents e1c3a95 + 10662fa commit af25255
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugin/kubernetes/tempContainer.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,7 @@ func (c *tempContainer) delete(ctx context.Context) error {
var deleteImmediately int64 = 0
return c.podi.Delete(ctx, c.pod.Name, metav1.DeleteOptions{GracePeriodSeconds: &deleteImmediately})
}

func (c *tempContainer) String() string {
return c.pod.String()
}

0 comments on commit af25255

Please sign in to comment.