Make sure the ID is a str

246_facepalm_backup
overclockworked64 2021-10-16 17:50:36 +02:00 committed by Tyler Goodlet
parent 73cbb2388a
commit 6e6baf250b
1 changed files with 1 additions and 1 deletions

View File

@ -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: