Skip to content

Commit 0578f12

Browse files
authored
Merge pull request #527 from fluxcd/return-key-err
Return signing entity parsing error
2 parents 99009ca + 76a9b23 commit 0578f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/controller/imageupdateautomation_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ func (r *ImageUpdateAutomationReconciler) Reconcile(ctx context.Context, req ctr
356356
var signingEntity *openpgp.Entity
357357
if gitSpec.Commit.SigningKey != nil {
358358
if signingEntity, err = r.getSigningEntity(ctx, auto); err != nil {
359-
failWithError(err)
359+
return failWithError(err)
360360
}
361361
}
362362

0 commit comments

Comments
 (0)