Bump BusyTimeout for SQLite to 1000ms

This commit is contained in:
Bogdan
2026-01-03 17:18:29 +02:00
committed by Auggie
parent 2ed910459f
commit 688434ced9

View File

@@ -49,7 +49,7 @@ namespace NzbDrone.Core.Datastore
JournalMode = OsInfo.IsOsx ? SQLiteJournalModeEnum.Truncate : SQLiteJournalModeEnum.Wal,
Pooling = true,
Version = 3,
BusyTimeout = 100
BusyTimeout = 1000
};
if (OsInfo.IsOsx)