Skip to content

Commit

Permalink
fix: Missed error (#76)
Browse files Browse the repository at this point in the history
Signed-off-by: RealAnna <[email protected]>
  • Loading branch information
RealAnna authored Sep 30, 2022
1 parent 1dcb615 commit a59aa15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/controllers/keptntask/job_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (r *KeptnTaskReconciler) createFunctionJob(ctx context.Context, req ctrl.Re
params.SecureParameters = task.Spec.SecureParameters.Secret
}

job, _ := r.generateFunctionJob(task, params)
job, err := r.generateFunctionJob(task, params)
if err != nil {
return "", err
}
Expand Down

0 comments on commit a59aa15

Please sign in to comment.