From fa86269e30e86b6edb9aae5433bd64cc081c8946 Mon Sep 17 00:00:00 2001 From: goodboy Date: Thu, 12 Feb 2026 00:51:17 -0500 Subject: [PATCH] Stuff from auto-review in https://github.com/goodboy/tractor/pull/412 .. --- tests/test_multi_program.py | 2 +- tractor/_root.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_multi_program.py b/tests/test_multi_program.py index eff9a731..17003e1c 100644 --- a/tests/test_multi_program.py +++ b/tests/test_multi_program.py @@ -163,7 +163,7 @@ def test_non_registrar_spawns_child( async with sub_ptl.open_context( get_root_portal, - ) as (ctx, first): + ) as (ctx, _): print('Waiting for `sub` to connect back to us..') await an.cancel() diff --git a/tractor/_root.py b/tractor/_root.py index f480a619..6589dacb 100644 --- a/tractor/_root.py +++ b/tractor/_root.py @@ -524,7 +524,7 @@ async def open_root_actor( # ?TODO, per-OS non-network-proto alt options? # -[ ] on linux we should be able to always use UDS? # - raddrs: list[Address] = _state._runtime_vars['_root_addrs'] + raddrs: list[UnwrappedAddress] = _state._runtime_vars['_root_addrs'] raddrs.extend( accept_addrs, )