about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPhilipp Volguine <phil.volguine@gmail.com>2016-03-13 21:04:11 +0000
committerPhilipp Volguine <phil.volguine@gmail.com>2016-03-13 21:04:11 +0000
commit10198b586e4c7a177b7922c511c0176051f730c4 (patch)
tree1db18edde348cca2f058129c98d7c24887a612cc /nixos
parentc483224c82c8e94324c03576e64c5dfbf16bd2f8 (diff)
downloadnixlib-10198b586e4c7a177b7922c511c0176051f730c4.tar
nixlib-10198b586e4c7a177b7922c511c0176051f730c4.tar.gz
nixlib-10198b586e4c7a177b7922c511c0176051f730c4.tar.bz2
nixlib-10198b586e4c7a177b7922c511c0176051f730c4.tar.lz
nixlib-10198b586e4c7a177b7922c511c0176051f730c4.tar.xz
nixlib-10198b586e4c7a177b7922c511c0176051f730c4.tar.zst
nixlib-10198b586e4c7a177b7922c511c0176051f730c4.zip
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
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/gitlab.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix
index cc50bfbea531..85b3ab6f9249 100644
--- a/nixos/modules/services/misc/gitlab.nix
+++ b/nixos/modules/services/misc/gitlab.nix
@@ -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\"";
       };
     };