From c2acc4f55cdcc82b2d43579201da683479898c9c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 25 Jul 2025 11:27:30 -0400 Subject: [PATCH] Rm `assert` from `Channel.from_addr()`, for UDS we re-created to extract the peer PID --- tractor/ipc/_chan.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tractor/ipc/_chan.py b/tractor/ipc/_chan.py index 9ddab8b0..dcb0d6ad 100644 --- a/tractor/ipc/_chan.py +++ b/tractor/ipc/_chan.py @@ -185,7 +185,9 @@ class Channel: addr, **kwargs, ) - assert transport.raddr == addr + # XXX, for UDS *no!* since we recv the peer-pid and build out + # a new addr.. + # assert transport.raddr == addr chan = Channel(transport=transport) # ?TODO, compact this into adapter level-methods? @@ -301,7 +303,7 @@ class Channel: self, payload: Any, - hide_tb: bool = True, + hide_tb: bool = False, ) -> None: '''