From 9b16eeed2f99b0995823660279e72ed7992363db Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Sun, 13 Apr 2025 14:02:41 -0300 Subject: [PATCH] Fix chan manager close remove_channel call --- tractor/ipc/_ringbuf/_pubsub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/ipc/_ringbuf/_pubsub.py b/tractor/ipc/_ringbuf/_pubsub.py index 40adf611..4b386463 100644 --- a/tractor/ipc/_ringbuf/_pubsub.py +++ b/tractor/ipc/_ringbuf/_pubsub.py @@ -242,7 +242,7 @@ class ChannelManager(Generic[ChannelType]): if info.channel.closed: continue - await self.remove_channel(info.name) + await self.remove_channel(info.token.shm_name) self._is_closed = True