From e9b351e7495084123c0092d10f4644fce431eec0 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Sun, 28 Apr 2019 07:50:24 -0700 Subject: [PATCH] Reduce memory usage of test_simple in test_stress.py. (#4709) --- python/ray/tests/test_stress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tests/test_stress.py b/python/ray/tests/test_stress.py index aeaa26e4e..4f94e2310 100644 --- a/python/ray/tests/test_stress.py +++ b/python/ray/tests/test_stress.py @@ -196,7 +196,7 @@ def test_wait(ray_start_combination): def ray_start_reconstruction(request): num_nodes = request.param - plasma_store_memory = int(0.5 * 10**9) + plasma_store_memory = int(0.1 * 10**9) cluster = Cluster( initialize_head=True,