From a785106b47328ac209dd3d603ca04ec8e8f0b28a Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Wed, 19 Aug 2020 16:52:50 -0700 Subject: [PATCH] [Doc] Remove experimental marker for asyncio API (#10202) --- doc/source/async_api.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/doc/source/async_api.rst b/doc/source/async_api.rst index c7910d87a..221844604 100644 --- a/doc/source/async_api.rst +++ b/doc/source/async_api.rst @@ -110,10 +110,3 @@ You can limit the number of concurrent task running at once using the # Only 10 tasks will be running concurrently. Once 10 finish, the next 10 should run. ray.get([actor.run_task.remote() for _ in range(50)]) - -Known Issues ------------- - -Async API support is experimental, and we are working to improve it. -Please `let us know `__ -any issues you encounter.