Skip to content

Commit

Permalink
use constant variables in Reconciled
Browse files Browse the repository at this point in the history
  • Loading branch information
googs1025 committed Dec 13, 2024
1 parent 9afd674 commit 178a3b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion controllers/nvidiadriver_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func (r *NVIDIADriverReconciler) Reconcile(ctx context.Context, req ctrl.Request
return reconcile.Result{RequeueAfter: time.Second * 5}, nil
}

if condErr = r.conditionUpdater.SetConditionsReady(ctx, instance, "Reconciled", "All resources have been successfully reconciled"); condErr != nil {
if condErr = r.conditionUpdater.SetConditionsReady(ctx, instance, conditions.Reconciled, "All resources have been successfully reconciled"); condErr != nil {
return ctrl.Result{}, condErr
}
return reconcile.Result{}, nil
Expand Down
2 changes: 1 addition & 1 deletion internal/conditions/conditions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func TestConditionsUpdater_SetConditionsReady(t *testing.T) {
Reason: "Ready",
}

err := u.SetConditionsReady(context.Background(), driver, "Reconciled", "All resources are successfully reconciled")
err := u.SetConditionsReady(context.Background(), driver, Reconciled, "All resources are successfully reconciled")
assert.NoError(t, err)

instance := &nvidiav1alpha1.NVIDIADriver{}
Expand Down

0 comments on commit 178a3b6

Please sign in to comment.