Skip to content

Commit

Permalink
[Core] Fix object reconstruction hang on arguments pending creation (r…
Browse files Browse the repository at this point in the history
…ay-project#47645)

Signed-off-by: Jiajun Yao <jeromeyjj@gmail.com>
Signed-off-by: ujjawal-khare <ujjawal.khare@dream11.com>
  • Loading branch information
jjyao authored and ujjawal-khare committed Oct 15, 2024
1 parent 4c5a08f commit f19b946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ray/core_worker/object_recovery_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ void ObjectRecoveryManager::ReconstructObject(const ObjectID &object_id) {
}
}
} else {
RAY_LOG(INFO).WithField(object_id)
<< "Failed to reconstruct object because lineage has already been deleted";
RAY_LOG(INFO) << "Failed to reconstruct object " << object_id
<< " because lineage has already been deleted";
reference_counter_->UpdateObjectPendingCreation(object_id, false);
recovery_failure_callback_(
object_id,
Expand Down

0 comments on commit f19b946

Please sign in to comment.