Skip to content

Commit eb66a26

Browse files
authored
Improve log message wording when service already exists during reconciliation (#4096)
1 parent 0106303 commit eb66a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ray-operator/controllers/ray/rayservice_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ func (r *RayServiceReconciler) reconcileServices(ctx context.Context, rayService
880880
if err == nil {
881881
// Only update the service if the RayCluster switches.
882882
if newSvc.Spec.Selector[utils.RayClusterLabelKey] == oldSvc.Spec.Selector[utils.RayClusterLabelKey] {
883-
logger.Info("Service has already exists in the RayCluster, skip Update", "rayCluster", newSvc.Spec.Selector[utils.RayClusterLabelKey], "serviceType", serviceType)
883+
logger.Info("Service already exists in the RayCluster, skipping Update", "rayCluster", newSvc.Spec.Selector[utils.RayClusterLabelKey], "serviceType", serviceType)
884884
return oldSvc, nil
885885
}
886886

0 commit comments

Comments
 (0)