forked from goodboy/tractor
1
0
Fork 0

Lul, fix everything for cluster helper

graceful_gather
Tyler Goodlet 2021-10-04 16:01:09 -04:00
parent 8ba10315c1
commit 9ddd75733c
1 changed files with 14 additions and 13 deletions

View File

@ -17,7 +17,10 @@ async def open_actor_cluster(
count: int = cpu_count(),
names: Optional[list[str]] = None,
) -> AsyncGenerator[..., dict[str, tractor.Portal]]:
) -> AsyncGenerator[
list[str],
dict[str, tractor.Portal]
]:
portals: dict[str, tractor.Portal] = {}
uid = tractor.current_actor().uid
@ -30,10 +33,8 @@ async def open_actor_cluster(
raise ValueError(
'Number of names is {len(names)} but count it {count}')
async with (
tractor.open_nursery() as an,
trio.open_nursery() as n,
):
async with tractor.open_nursery() as an:
async with trio.open_nursery() as n:
for index, key in zip(range(count), names):
async def start(i) -> None: