fix: ignore checksum constraint error when logging (#26113)

This commit is contained in:
Jason Rasmussen
2026-02-10 15:43:55 -05:00
committed by GitHub
parent 4c948647fc
commit 458d5f0f8f

View File

@@ -102,6 +102,10 @@ export const getKyselyConfig = (
}),
log(event) {
if (event.level === 'error') {
if (isAssetChecksumConstraint(event.error)) {
return;
}
console.error('Query failed :', {
durationMs: event.queryDurationMillis,
error: event.error,