Sha256: f9fe8f33e49718d4502c2d5008d41ccd25b87ce164ff8b70a02bc1fb8cf25190
Contents?: true
Size: 475 Bytes
Versions: 6
Compression:
Stored size: 475 Bytes
Contents
# Sample configuration file for Sidekiq. # Options here can still be overridden by cmd line args. # Place this file at config/sidekiq.yml and Sidekiq will # pick it up automatically. --- :verbose: false :logfile: ./log/sidekiq.log :concurrency: <%= ENV.fetch("SIDEKIQ_CONCURRENCY", 10) %> :timeout: 25 :max_retries: 3 # https://phil.tech/2016/tips-on-sidekiq-queues/ :queues: - [default, 5] - [mailers, 3] - [active_storage_analysis, 1] - [active_storage_purge, 1]
Version data entries
6 entries across 6 versions & 1 rubygems