From 2f00b2ff05b18eeb826274dd00a05413df468595 Mon Sep 17 00:00:00 2001 From: Markus Hilger Date: Fri, 4 Sep 2026 17:53:40 +0200 Subject: [PATCH] Leave asyncio debug mode off by default set_debug(True) put per-callback overhead and slow callback logging into every run. Use PYTHONASYNCIODEBUG=1 or -X dev instead. --- confluent_server/confluent/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/confluent_server/confluent/main.py b/confluent_server/confluent/main.py index 4d0fe881..0ef163a3 100644 --- a/confluent_server/confluent/main.py +++ b/confluent_server/confluent/main.py @@ -346,7 +346,6 @@ async def asyncrun(args): _redirectoutput() if havefcntl: _updatepidfile() - asyncio.get_running_loop().set_debug(True) global _stopevent _stopevent = asyncio.Event() for stopsig in (signal.SIGINT, signal.SIGTERM):