implement through workers
This commit is contained in:
parent
39385bc8b2
commit
46524832de
13 changed files with 2213 additions and 91 deletions
4
main.go
4
main.go
|
|
@ -35,7 +35,9 @@ func main() {
|
|||
s := grpc.NewServer(
|
||||
grpc.Creds(insecure.NewCredentials()),
|
||||
)
|
||||
ray_rpc.RegisterRayletDriverServer(s, NewRayletServicer())
|
||||
server := NewMemRaylet()
|
||||
ray_rpc.RegisterRayletDriverServer(s, server)
|
||||
ray_rpc.RegisterRayletWorkerConnectionServer(s, server)
|
||||
|
||||
// Serve gRPC Server
|
||||
log.Info("Serving gRPC on https://", addr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue