From 69b573a393c585dc3442cf449ca7399d3532ff1a Mon Sep 17 00:00:00 2001 From: TidusJar Date: Thu, 4 Oct 2018 14:38:47 +0100 Subject: [PATCH] some comments detaling why we move out the setting !wip --- src/Ombi/Program.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Ombi/Program.cs b/src/Ombi/Program.cs index c0382f8de..a3d06d073 100644 --- a/src/Ombi/Program.cs +++ b/src/Ombi/Program.cs @@ -98,6 +98,15 @@ namespace Ombi BuildWebHost(args).Run(); } + /// + /// This is to remove the Settings from the Ombi.db to the "new" + /// OmbiSettings.db + /// + /// Ombi is hitting a limitation with SQLite where there is a lot of database activity + /// and SQLite does not handle concurrency at all, causing db locks. + /// + /// Splitting it all out into it's own DB helps with this. + /// private static void CheckAndMigrate() { var doneGlobal = false;