From e4d80e1b0f8899697d49b52d39efbf4a9c61c71a Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Thu, 3 Sep 2020 13:18:21 -0500 Subject: [PATCH] fix passing sys config to start (#10514) --- python/ray/tests/test_multi_node.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/python/ray/tests/test_multi_node.py b/python/ray/tests/test_multi_node.py index 1b3762432..22474a3e1 100644 --- a/python/ray/tests/test_multi_node.py +++ b/python/ray/tests/test_multi_node.py @@ -371,6 +371,13 @@ def test_calling_start_ray_head(call_ray_stop_only): check_call_ray(["start", "--head", "--node-ip-address", "127.0.0.1"]) check_call_ray(["stop"]) + # Test starting Ray with a system config parameter set. + check_call_ray([ + "start", "--head", "--system-config", + "{\"metrics_report_interval_ms\":100}" + ]) + check_call_ray(["stop"]) + # Test starting Ray with the object manager and node manager ports # specified. check_call_ray([