Skip to content

Commit

Permalink
Increase semaphore grants to 2200 (#1360)
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro authored Jul 27, 2024
1 parent 1f18ea6 commit 93540de
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(1800, 1800);
_lock = new SemaphoreSlim(2200, 2200);

// 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 93540de

Please sign in to comment.