From 588c573d418d78b730898dcd6314d61f0dd1389d Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Sun, 9 Sep 2018 19:23:09 -0700 Subject: [PATCH] Ray stop needs to kill `plasma_store_server` not `plasma_store` (#2850) --- python/ray/scripts/scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/scripts/scripts.py b/python/ray/scripts/scripts.py index bfe83a127..e942797de 100644 --- a/python/ray/scripts/scripts.py +++ b/python/ray/scripts/scripts.py @@ -345,7 +345,7 @@ def start(node_ip_address, redis_address, redis_port, num_redis_shards, def stop(): subprocess.call( [ - "killall global_scheduler plasma_store plasma_manager " + "killall global_scheduler plasma_store_server plasma_manager " "local_scheduler raylet raylet_monitor" ], shell=True)