From 7ce1c0cb993f8944468f4ab6084fd5ad6b13f68d Mon Sep 17 00:00:00 2001 From: Jamie Date: Mon, 20 Nov 2017 08:19:02 +0000 Subject: [PATCH] Moved the schedules jobs into it's own database, see if it helps with the db locking #1720 --- src/Ombi/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/Startup.cs b/src/Ombi/Startup.cs index 08b3822ec..26432017f 100644 --- a/src/Ombi/Startup.cs +++ b/src/Ombi/Startup.cs @@ -128,7 +128,7 @@ namespace Ombi { i.StoragePath = string.Empty; } - var sqliteStorage = $"Data Source={Path.Combine(i.StoragePath, "Ombi.db")};"; + var sqliteStorage = $"Data Source={Path.Combine(i.StoragePath, "Schedules.db")};"; services.AddHangfire(x => {