fix: prevent isolate deadlock (#21692)

This commit is contained in:
Alex
2025-09-08 14:18:13 -05:00
committed by GitHub
parent 059a0e8aa8
commit 59accbf32a
2 changed files with 11 additions and 6 deletions

View File

@@ -148,7 +148,7 @@ class Drift extends $Drift implements IDatabaseRepository {
await customStatement('PRAGMA foreign_keys = ON');
await customStatement('PRAGMA synchronous = NORMAL');
await customStatement('PRAGMA journal_mode = WAL');
await customStatement('PRAGMA busy_timeout = 500');
await customStatement('PRAGMA busy_timeout = 30000');
},
);
}