From 2c7e6ec9184d300aaaa80bf8d0d707a9924d9d06 Mon Sep 17 00:00:00 2001 From: SangBin Cho Date: Sat, 26 Oct 2024 13:05:51 -0700 Subject: [PATCH] [Core] remove bad logs (#48281) Signed-off-by: JP-sDEV --- src/ray/core_worker/transport/actor_task_submitter.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ray/core_worker/transport/actor_task_submitter.cc b/src/ray/core_worker/transport/actor_task_submitter.cc index fe666c382f99..babd1ba8dc6d 100644 --- a/src/ray/core_worker/transport/actor_task_submitter.cc +++ b/src/ray/core_worker/transport/actor_task_submitter.cc @@ -138,7 +138,6 @@ Status ActorTaskSubmitter::SubmitActorCreationTask(TaskSpecification task_spec) rpc::RayErrorInfo ray_error_info; if (status.IsSchedulingCancelled()) { RAY_LOG(DEBUG).WithField(actor_id) << "Actor creation cancelled"; - RAY_LOG(ERROR).WithField(actor_id) << "SANG-TODO Actor creation cancelled"; task_finisher_.MarkTaskCanceled(task_id); if (reply.has_death_cause()) { ray_error_info.mutable_actor_died_error()->CopyFrom(reply.death_cause());