Skip to content

Commit

Permalink
controller: fix reconciliation log (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
dethi committed Dec 14, 2023
1 parent d0b77bf commit f9bce59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/hbase_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -600,8 +600,8 @@ func (r *HBaseReconciler) ensureStatefulSet(hb *hbasev1.HBase,
r.Log.Info("StatefulSet reconciliation",
"name", stsName,
"revision is up to date", actualRevision == expectedRevision,
"expected replicas", *actual.Spec.Replicas,
"actual replicas", *expected.Spec.Replicas)
"expected replicas", *expected.Spec.Replicas,
"actual replicas", *actual.Spec.Replicas)

if *actual.Spec.Replicas != *expected.Spec.Replicas || actualRevision != expectedRevision {
// Update StatefulSet to expected configuration
Expand Down

0 comments on commit f9bce59

Please sign in to comment.