From 4960bfd18c73db8dfe7bfff0a4cddc443eff53eb Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 8 Mar 2017 10:42:13 -0600 Subject: Actually log sidekiq on start_sidekiq When using the GDK we exeucte sidekiq https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/Procfile.example#L11 We should log sidekiq output to sidekiq.log using -L flag --- bin/background_jobs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/background_jobs b/bin/background_jobs index f28e2f722dc..c41d9f3022e 100755 --- a/bin/background_jobs +++ b/bin/background_jobs @@ -33,7 +33,7 @@ restart() start_no_deamonize() { - start_sidekiq >> $sidekiq_logfile 2>&1 + start_sidekiq -L $sidekiq_logfile >> $sidekiq_logfile 2>&1 } start_sidekiq() -- cgit v1.2.1