Merge branch 'main' into dev

This commit is contained in:
Owen
2025-12-05 09:45:17 -05:00
19 changed files with 4279 additions and 3903 deletions

View File

@@ -1742,7 +1742,12 @@ hybridRouter.post(
tls: logEntry.tls
}));
await db.insert(requestAuditLog).values(logEntries);
// batch them into inserts of 100 to avoid exceeding parameter limits
const batchSize = 100;
for (let i = 0; i < logEntries.length; i += batchSize) {
const batch = logEntries.slice(i, i + batchSize);
await db.insert(requestAuditLog).values(batch);
}
return response(res, {
data: null,