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
The export endpoint at api/export/route.ts runs SELECT * FROM audit_log with no LIMIT. For long-running instances this can return millions of rows, exhausting memory. Add a configurable max-rows limit (e.g. 50,000) with pagination or CSV streaming.
The export endpoint at
api/export/route.tsrunsSELECT * FROM audit_logwith noLIMIT. For long-running instances this can return millions of rows, exhausting memory. Add a configurable max-rows limit (e.g. 50,000) with pagination or CSV streaming.