Rename async_queue_depth -> num_async (#8207)

* rename

* lint
This commit is contained in:
Eric Liang
2020-05-05 01:38:10 -07:00
committed by GitHub
parent f48da50e1c
commit ee0eb44a32
5 changed files with 15 additions and 17 deletions
+1 -1
View File
@@ -292,7 +292,7 @@ def test_gather_async(ray_start_regular_shared):
def test_gather_async_queue(ray_start_regular_shared):
it = from_range(100)
it = it.gather_async(async_queue_depth=4)
it = it.gather_async(num_async=4)
assert sorted(it) == list(range(100))