Skip to content

Commit

Permalink
Add log error in case of error on the rbac reconciler
Browse files Browse the repository at this point in the history
  • Loading branch information
atheo89 committed Nov 6, 2024
1 parent 573e592 commit d937dec
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ func (r *OpenshiftNotebookReconciler) Reconcile(ctx context.Context, req ctrl.Re
if strings.ToLower(strings.TrimSpace(os.Getenv("SET_PIPELINE_RBAC"))) == "true" {
err = r.ReconcileRoleBindings(notebook, ctx)
if err != nil {
log.Error(err, "Unable to Reconcile Rolebinding")
return ctrl.Result{}, err
}
}
Expand Down

0 comments on commit d937dec

Please sign in to comment.