[Client] Fix mismatched debug log ID formats (#17597)

This commit is contained in:
Thomas Desrosiers 2021-08-13 16:28:20 -04:00 committed by GitHub
parent 14365e111d
commit 3e48df89f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]))