Reverted the global app lock for the db #2750

This commit is contained in:
tidusjar 2019-03-27 10:19:36 +00:00
parent 13a73020e5
commit 439dc395d0
12 changed files with 10 additions and 57 deletions

View file

@ -154,7 +154,7 @@ namespace Ombi.Store.Repository.Requests
private async Task<int> InternalSaveChanges()
{
return await GlobalMutex.Lock(async () => await Db.SaveChangesAsync());
return await Db.SaveChangesAsync();
}
}
}