mirror of
https://github.com/wassname/ray.git
synced 2026-06-30 04:19:23 +08:00
Remove is_direct logic from the raylet (#7698)
This commit is contained in:
@@ -600,7 +600,7 @@ class NodeStats(threading.Thread):
|
||||
"jobId": ray.utils.binary_to_hex(
|
||||
actor_data.job_id),
|
||||
"state": actor_data.state,
|
||||
"isDirectCall": actor_data.is_direct_call,
|
||||
"isDirectCall": True,
|
||||
"timestamp": actor_data.timestamp
|
||||
}
|
||||
else:
|
||||
|
||||
+1
-1
@@ -333,7 +333,7 @@ class GlobalState:
|
||||
"IPAddress": actor_table_data.owner_address.ip_address,
|
||||
"Port": actor_table_data.owner_address.port
|
||||
},
|
||||
"IsDirectCall": actor_table_data.is_direct_call,
|
||||
"IsDirectCall": True,
|
||||
"State": actor_table_data.state,
|
||||
"Timestamp": actor_table_data.timestamp,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user