forked from goodboy/tractor
Make sure the ID is a str
parent
0f613050e1
commit
010a994f1d
|
@ -25,7 +25,7 @@ async def open_actor_cluster(
|
|||
]:
|
||||
|
||||
portals: dict[str, tractor.Portal] = {}
|
||||
uid = __import__('random').randint(0, 2 ** 16)
|
||||
uid = str(__import__('random').randint(0, 2 ** 16))
|
||||
# uid = tractor.current_actor().uid
|
||||
|
||||
if not names:
|
||||
|
|
Loading…
Reference in New Issue