From 36bf03d65cc9d611e2b8c8ed2ae05886f5b3a306 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 20 Mar 2026 10:56:18 -0400 Subject: [PATCH] Fix passing of args in handoff to async --- confluent_server/confluent/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_server/confluent/main.py b/confluent_server/confluent/main.py index 5b12d4dd..9ba7a24a 100644 --- a/confluent_server/confluent/main.py +++ b/confluent_server/confluent/main.py @@ -277,9 +277,9 @@ def migrate_db(): def run(args): - asyncio.run(asyncrun()) + asyncio.run(asyncrun(args)) -async def asyncrun(): +async def asyncrun(args): setlimits() try: configmanager.ConfigManager(None)