From ecd8f39580c40da83be4bca34612391f824b23d5 Mon Sep 17 00:00:00 2001 From: Richard Liaw Date: Fri, 5 Oct 2018 15:24:24 -0700 Subject: [PATCH] [core] Improve logging message when plasma store is started. (#3029) Improve logging message when plasma store is started. --- python/ray/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/services.py b/python/ray/services.py index f66001ba6..9b1592e7b 100644 --- a/python/ray/services.py +++ b/python/ray/services.py @@ -1148,7 +1148,7 @@ def start_plasma_store(node_ip_address, objstore_memory = int(system_memory * 0.8) # Start the Plasma store. logger.info("Starting the Plasma object store with {0:.2f} GB memory." - .format(objstore_memory // 10**9)) + .format(objstore_memory / 10**9)) plasma_store_name, p1 = ray.plasma.start_plasma_store( plasma_store_memory=objstore_memory, use_profiler=RUN_PLASMA_STORE_PROFILER,