Add missing sidekiq queue

This commit is contained in:
Râu Cao 2022-12-01 17:08:17 +01:00
parent f8fd10c4c2
commit a460302728
Signed by: raucao
GPG Key ID: 15E65F399D084BA9
2 changed files with 1 additions and 2 deletions

View File

@ -61,7 +61,6 @@
"nodejs::install", "nodejs::install",
"backup::default", "backup::default",
"logrotate::default", "logrotate::default",
"poise-git::default",
"git::default", "git::default",
"git::package" "git::package"
], ],

View File

@ -10,7 +10,7 @@ WorkingDirectory=<%= @app_dir %>
Environment="RAILS_ENV=production" Environment="RAILS_ENV=production"
Environment="DB_POOL=50" Environment="DB_POOL=50"
Environment="LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2" Environment="LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2"
ExecStart=<%= @bundle_path %> exec sidekiq -c <%= @sidekiq_threads %> -q default -q mailers -q pull -q push ExecStart=<%= @bundle_path %> exec sidekiq -c <%= @sidekiq_threads %> -q default -q mailers -q pull -q push -q ingress
TimeoutSec=15 TimeoutSec=15
Restart=always Restart=always