Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Merge fbed359 into 0ced1f4
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnosal authored Aug 22, 2023
2 parents 0ced1f4 + fbed359 commit 4768e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reconcilers/sequence.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (r Sequence[T]) Reconcile(ctx context.Context, resource T) (Result, error)
for i, reconciler := range r {
log := logr.FromContextOrDiscard(ctx).
WithName(fmt.Sprintf("%d", i))
ctx = logr.NewContext(ctx, log)
ctx := logr.NewContext(ctx, log)

result, err := reconciler.Reconcile(ctx, resource)
aggregateResult = AggregateResults(result, aggregateResult)
Expand Down

0 comments on commit 4768e6c

Please sign in to comment.