Fix 404ed tokio urls

live_on_air_from_tokio
Tyler Goodlet 2021-09-02 16:08:41 -04:00
parent bcf5b9fd18
commit 1137a9e7ac
1 changed files with 2 additions and 2 deletions

View File

@ -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