From 1137a9e7ac949602bdc358dbce965196fea91bb7 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 2 Sep 2021 16:08:41 -0400 Subject: [PATCH] Fix 404ed tokio urls --- tractor/_broadcast.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tractor/_broadcast.py b/tractor/_broadcast.py index e26c637..51a9be8 100644 --- a/tractor/_broadcast.py +++ b/tractor/_broadcast.py @@ -1,6 +1,6 @@ ''' ``tokio`` style broadcast channel. -https://tokio-rs.github.io/tokio/doc/tokio/sync/broadcast/index.html +https://docs.rs/tokio/1.11.0/tokio/sync/broadcast/index.html ''' from __future__ import annotations @@ -146,7 +146,7 @@ class BroadcastReceiver(ReceiveChannel): # receiver's position is updated to the oldest value # contained by the channel. The next call to recv will # return this value." - # https://tokio-rs.github.io/tokio/doc/tokio/sync/broadcast/index.html#lagging + # https://docs.rs/tokio/1.11.0/tokio/sync/broadcast/index.html#lagging # decrement to the last value and expect # consumer to either handle the ``Lagged`` and come back