From 68097428a51678ec633c6090cf931b14f7806d77 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 21 Jan 2026 16:47:17 -0500 Subject: [PATCH] Modernize asyncio invocation in main confluent runtime --- confluent_server/bin/confluent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/bin/confluent b/confluent_server/bin/confluent index e5a0c3bf..9891e4aa 100755 --- a/confluent_server/bin/confluent +++ b/confluent_server/bin/confluent @@ -43,7 +43,7 @@ async def main(): if __name__ == '__main__': #multiprocessing.freeze_support() #asyncio.get_event_loop().run_until_complete(main()) - asyncio.get_event_loop().run_until_complete(main()) + asyncio.run(main()) #gt = spawn_for_awaitable(confluent.main.run(sys.argv)) #gt.wait() #except: