Revert "[gRPC] Migrate raylet client implementation to grpc (#5120)"

This reverts commit 40395acadf.
This commit is contained in:
Simon Mo
2019-08-02 15:03:09 -07:00
parent 00beb501a4
commit e4854b11f9
53 changed files with 1156 additions and 1698 deletions
@@ -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 workerId,
public RayletClientImpl(String schedulerSockName, UniqueId clientId,
boolean isWorker, JobId jobId) {
client = nativeInit(schedulerSockName, workerId.getBytes(),
client = nativeInit(schedulerSockName, clientId.getBytes(),
isWorker, jobId.getBytes());
}