Remove is_direct logic from the raylet (#7698)

This commit is contained in:
Edward Oakes
2020-03-23 17:09:35 -05:00
committed by GitHub
parent 3fa2e4a346
commit 9318b29f5e
18 changed files with 49 additions and 103 deletions
+1 -1
View File
@@ -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
View File
@@ -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,
}