Make sure the ID is a str
parent
73cbb2388a
commit
6e6baf250b
|
@ -25,7 +25,7 @@ async def open_actor_cluster(
|
||||||
]:
|
]:
|
||||||
|
|
||||||
portals: dict[str, tractor.Portal] = {}
|
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
|
# uid = tractor.current_actor().uid
|
||||||
|
|
||||||
if not names:
|
if not names:
|
||||||
|
|
Loading…
Reference in New Issue