forked from goodboy/tractor
Avoid RuntimeError by not using current_actor's uid
parent
dc8ccca8be
commit
0f613050e1
|
@ -25,7 +25,8 @@ async def open_actor_cluster(
|
||||||
]:
|
]:
|
||||||
|
|
||||||
portals: dict[str, tractor.Portal] = {}
|
portals: dict[str, tractor.Portal] = {}
|
||||||
uid = tractor.current_actor().uid
|
uid = __import__('random').randint(0, 2 ** 16)
|
||||||
|
# uid = tractor.current_actor().uid
|
||||||
|
|
||||||
if not names:
|
if not names:
|
||||||
suffix = '_'.join(uid)
|
suffix = '_'.join(uid)
|
||||||
|
|
Loading…
Reference in New Issue