From 688434ced9f51d8031f93b1988cf18ebe7069c0c Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 3 Jan 2026 17:18:29 +0200 Subject: [PATCH] Bump BusyTimeout for SQLite to 1000ms --- src/NzbDrone.Core/Datastore/ConnectionStringFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/ConnectionStringFactory.cs b/src/NzbDrone.Core/Datastore/ConnectionStringFactory.cs index 19c938737..722440993 100644 --- a/src/NzbDrone.Core/Datastore/ConnectionStringFactory.cs +++ b/src/NzbDrone.Core/Datastore/ConnectionStringFactory.cs @@ -49,7 +49,7 @@ private static DatabaseConnectionInfo GetConnectionString(string dbPath) JournalMode = OsInfo.IsOsx ? SQLiteJournalModeEnum.Truncate : SQLiteJournalModeEnum.Wal, Pooling = true, Version = 3, - BusyTimeout = 100 + BusyTimeout = 1000 }; if (OsInfo.IsOsx)