Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/e4f9b4c71efa2e635959a70f6af47291a2aab83e You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added logging

pull/470/head
tidusjar 9 years ago
parent f112af7e85
commit e4f9b4c71e

@ -292,14 +292,20 @@ namespace PlexRequests.Store.Repository
db.Open();
using (var tran = db.BeginTransaction())
{
Log.Trace("Starting Transaction");
var result = enumerable.Sum(e => db.Insert(e));
var done = result == enumerable.Length;
Log.Trace($"Total Result: {done}");
Log.Trace($"db result: {result}");
Log.Trace($"totalitems result: {enumerable.Length}");
if (done)
{
Log.Trace("Committed the tran");
tran.Commit();
return true;
}
Log.Trace("Rolling back the tran");
tran.Rollback();
return false;

Loading…
Cancel
Save