From c07a5f6e11cc0169639b1284823bed5ec2c2128d Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 27 Feb 2021 16:08:44 -0500 Subject: [PATCH] Try fix worker pool link, again --- docs/README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README.rst b/docs/README.rst index 2a5e42b..6ad8f1d 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -208,7 +208,7 @@ pool thing?"*. tree you can imagine; a "worker pool" pattern is a trivial special case. -We have a `full re-implementation `_ of the std-lib's +We have a `full worker pool re-implementation`_ of the std-lib's ``concurrent.futures.ProcessPoolExecutor`` example for reference. You can run it like so (from this dir) to see the process tree in @@ -222,7 +222,7 @@ This uses no extra threads, fancy semaphores or futures; all we need is ``tractor``'s IPC! -.. _worker_pool: https://github.com/goodboy/tractor/blob/master/examples/parallelism/concurrent_actors_primes.py +.. _full worker pool re-implementation: https://github.com/goodboy/tractor/blob/master/examples/parallelism/concurrent_actors_primes.py Install -------