gitlab service startup fix

-gitlab-sidekiq was being started with a misspelled argument name
 which caused the mailer queue to never run and never send mail
This commit is contained in:
Philipp Volguine 2016-03-13 21:04:11 +00:00
parent c483224c82
commit 10198b586e

View File

@ -328,7 +328,7 @@ in {
Group = cfg.group;
TimeoutSec = "300";
WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab";
ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\"";
ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailers -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\"";
};
};