mirror of
https://github.com/wassname/ray.git
synced 2026-09-09 11:32:43 +08:00
Let local clients connect with local manager via unix domain sockets (#11)
* let local clients connect with local manager via unix domain sockets * fix clang-format * fix tests * fix stephanie's comments
This commit is contained in:
committed by
Robert Nishihara
parent
09a3ff7173
commit
84c581cf47
@@ -52,7 +52,7 @@ local_scheduler_state *init_local_scheduler(event_loop *loop,
|
||||
state->loop = loop;
|
||||
/* Connect to Plasma. This method will retry if Plasma hasn't started yet.
|
||||
* Pass in a NULL manager address and port. */
|
||||
state->plasma_conn = plasma_connect(plasma_socket_name, NULL, 0);
|
||||
state->plasma_conn = plasma_connect(plasma_socket_name, NULL);
|
||||
/* Subscribe to notifications about sealed objects. */
|
||||
int plasma_fd = plasma_subscribe(state->plasma_conn);
|
||||
/* Add the callback that processes the notification to the event loop. */
|
||||
|
||||
Reference in New Issue
Block a user