Show the discovered actor address

Print the discovered service's remote channel address instead of
the default `Portal` object repr.

Review: https://github.com/goodboy/tractor/pull/512#discussion_r3883250916

(this patch was generated in some part by `opencode` using `gpt-5.6-sol` (`openai`))
wkt/big_boi_docs_472_follow_ups
Gud Boi 2026-08-29 20:24:25 -04:00
parent a95ca7577f
commit d799bd6f68
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ async def main(service_name: str) -> None:
async with tractor.wait_for_actor(
service_name,
) as actor_portal:
print(f'my_service is found at {actor_portal}')
service_addr = actor_portal.chan.raddr
print(f'my_service is found at {service_addr}')
await an.cancel()