support dynamic library loading in C++ worker (#13734)

This commit is contained in:
SongGuyang
2021-02-01 19:24:33 +08:00
committed by GitHub
parent 1d2ab018b0
commit 361e5f0bef
15 changed files with 144 additions and 243 deletions
+1 -5
View File
@@ -1580,13 +1580,9 @@ def build_cpp_worker_command(
The command string for starting CPP worker.
"""
# TODO(Guyang Song): Remove the arg is_default_worker.
# See `cluster_mode_test.cc` for why this workaround is currently needed
# for C++ workers.
command = [
DEFAULT_WORKER_EXECUTABLE, plasma_store_name, raylet_name,
str(node_manager_port), redis_address, redis_password, session_dir,
"is_default_worker"
str(node_manager_port), redis_address, redis_password, session_dir
]
return command