From 8fd7d1cec49b36c2b84b37818e494b20ad720a5a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 6 Apr 2025 14:46:25 -0400 Subject: [PATCH] Add API-modernize-todo on `experimental._pubsub.fan_out_to_ctxs` --- tractor/experimental/_pubsub.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tractor/experimental/_pubsub.py b/tractor/experimental/_pubsub.py index b894ed49..bc5881e1 100644 --- a/tractor/experimental/_pubsub.py +++ b/tractor/experimental/_pubsub.py @@ -45,6 +45,8 @@ __all__ = ['pub'] log = get_logger('messaging') +# TODO! this needs to reworked to use the modern +# `Context`/`MsgStream` APIs!! async def fan_out_to_ctxs( pub_async_gen_func: typing.Callable, # it's an async gen ... gd mypy topics2ctxs: dict[str, list],