Skip to content

Commit

Permalink
fix verify.go
Browse files Browse the repository at this point in the history
Signed-off-by: Suleiman Dibirov <[email protected]>
  • Loading branch information
idsulik committed Dec 18, 2024
1 parent 20bb2e3 commit 51d6c81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/skaffold/verify/k8sjob/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ func (v *Verifier) watchJob(ctx context.Context, clientset k8sclient.Interface,
failMessage = "<empty>"
}

podErr = errors.New(fmt.Sprintf(
podErr = fmt.Errorf(
"%q running job %q errored during run: reason=%q, message=%q",
tc.Name, job.Name, failReason, failMessage,
))
)
break
}

Expand Down

0 comments on commit 51d6c81

Please sign in to comment.