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;