mirror of
https://github.com/wassname/ray.git
synced 2026-09-11 12:43:20 +08:00
Rebase Ray on latest arrow (remove numbuf from Ray). (#910)
* remove some stuff * put get roundtrip working * fixes * more fixes * cleanup * fix tests * latest arrow * fixes * fix tests * fix linting * rebase * fixes * fix bug * bring back libgcc error * fix linting * use official arrow repo * fixes
This commit is contained in:
committed by
Robert Nishihara
parent
a2814567e1
commit
7030ef366f
@@ -233,7 +233,7 @@ void create_actor(SchedulingAlgorithmState *algorithm_state,
|
||||
char id_string[ID_STRING_SIZE];
|
||||
LOG_DEBUG("Creating actor with ID %s.",
|
||||
ObjectID_to_string(actor_id, id_string, ID_STRING_SIZE));
|
||||
UNUSED(id_string);
|
||||
ARROW_UNUSED(id_string);
|
||||
}
|
||||
|
||||
void remove_actor(SchedulingAlgorithmState *algorithm_state, ActorID actor_id) {
|
||||
@@ -249,7 +249,7 @@ void remove_actor(SchedulingAlgorithmState *algorithm_state, ActorID actor_id) {
|
||||
ObjectID_to_string(actor_id, id_string, ID_STRING_SIZE),
|
||||
(long long) count);
|
||||
}
|
||||
UNUSED(id_string);
|
||||
ARROW_UNUSED(id_string);
|
||||
|
||||
/* Free all remaining tasks in the actor queue. */
|
||||
for (auto &task : *entry.task_queue) {
|
||||
|
||||
Reference in New Issue
Block a user