Skip to content

Commit

Permalink
Double sales semaphore grants (#1358)
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro authored Jul 27, 2024
1 parent 14793a4 commit 36f765e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Universalis.DbAccess/MarketBoard/SaleStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public SaleStore(ICluster scylla, ICacheRedisMultiplexer cache, ILogger<SaleStor
_cache = cache;
_logger = logger;

_lock = new SemaphoreSlim(500, 500);
_lock = new SemaphoreSlim(1000, 1000);

// Doing database initialization in a constructor is a Bad Idea and
// can lead to timeouts killing the application, so this just gets
Expand Down

0 comments on commit 36f765e

Please sign in to comment.