Skip to content

Commit

Permalink
fix log message
Browse files Browse the repository at this point in the history
Signed-off-by: drivebyer <yang.wu@daocloud.io>
  • Loading branch information
drivebyer committed Oct 31, 2023
1 parent eee26a4 commit 22065fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/redisreplication_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (r *RedisReplicationReconciler) Reconcile(ctx context.Context, req ctrl.Req

// Check that the Leader and Follower are ready in redis replication
if int32(redisReplicationInfo.Status.ReadyReplicas) != totalReplicas {
reqLogger.Info("Redis leader and follower nodes are not ready yet", "Ready.Replicas", strconv.Itoa(int(redisReplicationInfo.Status.ReadyReplicas)), "Expected.Replicas", totalReplicas)
reqLogger.Info("Redis replication nodes are not ready yet", "Ready.Replicas", strconv.Itoa(int(redisReplicationInfo.Status.ReadyReplicas)), "Expected.Replicas", totalReplicas)
return ctrl.Result{RequeueAfter: time.Second * 60}, nil
}

Expand Down

0 comments on commit 22065fe

Please sign in to comment.