mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
[Client] Fix mismatched debug log ID formats (#17597)
This commit is contained in:
parent
14365e111d
commit
3e48df89f7
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ class Worker:
|
|||
|
||||
def _release_server(self, id: bytes) -> None:
|
||||
if self.data_client is not None:
|
||||
logger.debug(f"Releasing {id}")
|
||||
logger.debug(f"Releasing {id.hex()}")
|
||||
self.data_client.ReleaseObject(
|
||||
ray_client_pb2.ReleaseRequest(ids=[id]))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue