From 83170259870aa4e8915f7749ccd6dae31b930021 Mon Sep 17 00:00:00 2001 From: Alexey Tumanov Date: Thu, 15 Jun 2017 10:02:46 -0700 Subject: [PATCH] reducing the size of objects created for the global scheduler test (#674) --- python/ray/global_scheduler/test/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/global_scheduler/test/test.py b/python/ray/global_scheduler/test/test.py index af32c194f..e1a11db91 100644 --- a/python/ray/global_scheduler/test/test.py +++ b/python/ray/global_scheduler/test/test.py @@ -243,8 +243,8 @@ class TestGlobalScheduler(unittest.TestCase): num_tasks = 1000 for _ in range(num_tasks): # Create a new object for each task. - data_size = np.random.randint(1 << 20) - metadata_size = np.random.randint(1 << 10) + data_size = np.random.randint(1 << 12) + metadata_size = np.random.randint(1 << 9) plasma_client = self.plasma_clients[0] object_dep, memory_buffer, metadata = create_object(plasma_client, data_size,