Update sidekiq to not explicitely define default queues

This commit is contained in:
waffles
2023-02-11 01:19:52 -08:00
parent 24f7356827
commit 9c52df1b18
3 changed files with 1 additions and 3 deletions
-1
View File
@@ -1,4 +1,3 @@
--- ---
sidekiq: sidekiq:
- name: default - name: default
q: [ 'push', 'pull', 'default', 'ingress', 'mailer', 'scheduler' ]
@@ -9,7 +9,7 @@ services:
{% if 'q' in SK %} {% if 'q' in SK %}
command: bundle exec sidekiq -q {{ SK['q'] | join(' -q ') }} -c 10 command: bundle exec sidekiq -q {{ SK['q'] | join(' -q ') }} -c 10
{% else %} {% else %}
command: bundle exec sidekiq command: bundle exec sidekiq -c 10
{% endif %} {% endif %}
depends_on: depends_on:
- pgbouncer - pgbouncer
-1
View File
@@ -1,4 +1,3 @@
--- ---
sidekiq: sidekiq:
- name: default - name: default
q: [ 'push', 'pull', 'default', 'ingress', 'mailers', 'scheduler' ]