some comments detaling why we move out the setting !wip

pull/2588/head
TidusJar 6 years ago
parent 618ee16d9d
commit 69b573a393

@ -98,6 +98,15 @@ namespace Ombi
BuildWebHost(args).Run();
}
/// <summary>
/// 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.
/// </summary>
private static void CheckAndMigrate()
{
var doneGlobal = false;

Loading…
Cancel
Save