Simplify plasma store config (#8823)

* simplify plasma store config
This commit is contained in:
Siyuan (Ryans) Zhuang
2020-06-08 20:47:22 -07:00
committed by GitHub
parent db5cc5c8da
commit 2f690d1866
2 changed files with 49 additions and 92 deletions
+1 -1
View File
@@ -566,11 +566,11 @@ class Node:
stdout_file, stderr_file = self.new_log_files("plasma_store")
process_info = ray.services.start_plasma_store(
self.get_resource_spec(),
self._plasma_store_socket_name,
stdout_file=stdout_file,
stderr_file=stderr_file,
plasma_directory=self._ray_params.plasma_directory,
huge_pages=self._ray_params.huge_pages,
plasma_store_socket_name=self._plasma_store_socket_name,
fate_share=self.kernel_fate_share)
assert (
ray_constants.PROCESS_TYPE_PLASMA_STORE not in self.all_processes)