mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 20:22:39 +08:00
[gRPC] Migrate raylet client implementation to grpc (#5120)
This commit is contained in:
@@ -37,9 +37,9 @@ public class RayletClientImpl implements RayletClient {
|
||||
private long client = 0;
|
||||
|
||||
// TODO(qwang): JobId parameter can be removed once we embed jobId in driverId.
|
||||
public RayletClientImpl(String schedulerSockName, UniqueId clientId,
|
||||
public RayletClientImpl(String schedulerSockName, UniqueId workerId,
|
||||
boolean isWorker, JobId jobId) {
|
||||
client = nativeInit(schedulerSockName, clientId.getBytes(),
|
||||
client = nativeInit(schedulerSockName, workerId.getBytes(),
|
||||
isWorker, jobId.getBytes());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user