Removed obsolete "detached=True" for detached actor in documentation. (#9158)

* Added small section on installation when using Anaconda. Also fixed an obsolete link to Anaconda.

* Delete more temporary directories when running the doc "make clean".

* Fixed typo in LinearDiscreteEnv docs

* Removed the "detached=True" from the description of detachted actors, because it is now deprecated.

Co-authored-by: Dean Wampler <dean@concurrentthought.com>
This commit is contained in:
Dean Wampler
2020-06-26 11:47:41 -05:00
committed by GitHub
parent 56d934bc18
commit b7cc1e78d7
+3 -3
View File
@@ -243,9 +243,9 @@ Detached Actors
When original actor handles goes out of scope or the driver that originally
created the actor exits, ray will clean up the actor by default. If you want
to make sure the actor is kept alive, you can use
``_remote(name="some_name", detached=True)`` to keep the actor alive after
the driver exits. The actor will have a globally unique name and can be
accessed across different drivers.
``_remote(name="some_name")`` to keep the actor alive after
the driver exits. The actor will have a globally unique name and can be
accessed across different drivers.
For example, you can instantiate and register a persistent actor as follows: