Change how sidekiq queues are defined

This commit is contained in:
Waffles
2022-12-26 22:41:35 -08:00
parent 474aebea81
commit 526e28d935
2 changed files with 5 additions and 6 deletions
@@ -5,7 +5,7 @@ services:
restart: always
env_file: .env.production
{% if 'q' in SK %}
command: bundle exec sidekiq {{ SK['q'] | join(' ') }} -c 10
command: bundle exec sidekiq -q {{ SK['q'] | join(' -q ') }} -c 10
{% else %}
command: bundle exec sidekiq
{% endif %}