1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00

decreases sidekiq concurrency from 25 to 5, 25 is too much and consumes memory for nothing

This commit is contained in:
Nicolas Florentin 2023-10-18 16:16:05 +02:00
parent 0b2b1334fb
commit 8c6da66538
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Fix a bug: fix all failing tasks of rake task file chain.rake
- Fix a bug: file_size_validator.rb was broken since ruby v3, see https://github.com/rails/rails/issues/41270
- decreases sidekiq concurrency from 25 to 5, 25 is too much and consumes memory for nothing
## v6.2.0 2023 October 13

View File

@ -1,7 +1,7 @@
# configuration file for Sidekiq
:verbose: true
:logfile: ./log/sidekiq.log
:concurrency: 25
:concurrency: 5
:queues:
- [stripe, 7]
- [default, 5]