Skip to content

Commit

Permalink
Fix reconciler monitor error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
benbjohnson committed Apr 29, 2024
1 parent 3f84eb2 commit 2f57274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reconciler_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,14 +285,14 @@ func (p *ReconcilerPool) monitorReconciler(ctx context.Context, r *Reconciler) {
slog.Error("metrics collection failed",
slog.String("app", info.name),
slog.Any("err", err))
return
continue
}

if err := r.Reconcile(ctx); err != nil {
slog.Error("reconciliation failed",
slog.String("app", info.name),
slog.Any("err", err))
return
continue
}

}
Expand Down

0 comments on commit 2f57274

Please sign in to comment.