You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
psutil.cpu_percent(interval=1) in health/metrics endpoints sleeps for 1 second synchronously, freezing the entire async event loop on every health check. Fix: use interval=None + asyncio.to_thread().
psutil.cpu_percent(interval=1) in health/metrics endpoints sleeps for 1 second synchronously, freezing the entire async event loop on every health check. Fix: use interval=None + asyncio.to_thread().