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

@ -83,7 +83,7 @@ namespace Ombi.Store.Repository
protected async Task<int> InternalSaveChanges()
{
return await GlobalMutex.Lock(async () => await _ctx.SaveChangesAsync());
return await _ctx.SaveChangesAsync();
}