Use new `tractor.query_actor()` for service checking

l1_precision_fix
Tyler Goodlet 2022-03-07 17:47:45 -05:00
parent 9138f376f7
commit 6c6f2abd06
1 changed files with 9 additions and 7 deletions

View File

@ -303,16 +303,15 @@ class Brokerd:
@acm
async def find_service(
service_name: str,
) -> Optional[tractor.Portal]:
) -> tractor.Portal:
log.info(f'Scanning for existing {service_name}')
log.info(f'Scanning for service `{service_name}`')
# attach to existing daemon by name if possible
async with tractor.find_actor(
service_name,
arbiter_sockaddr=_registry_addr,
) as portal:
yield portal
) as maybe_portal:
yield maybe_portal
async def check_for_service(
@ -323,8 +322,11 @@ async def check_for_service(
Service daemon "liveness" predicate.
'''
async with find_service(service_name) as portal:
return portal is not None
async with tractor.query_actor(
service_name,
arbiter_sockaddr=_registry_addr,
) as sockaddr:
return sockaddr
@acm