summaryrefslogtreecommitdiff
path: root/resque.sh
diff options
context:
space:
mode:
authoranton troyanov <anton@troyanov.net>2012-12-26 16:36:40 +0400
committeranton troyanov <anton@troyanov.net>2012-12-26 16:36:40 +0400
commita934bafd9fcf94b2d96a9b465a051f0a329b72e7 (patch)
tree288c6a17c55c8c427527201a09fd204a0566f0c9 /resque.sh
parent70ebcf250a067b1118b317f233574ff714841a4f (diff)
downloadgitlab-ce-a934bafd9fcf94b2d96a9b465a051f0a329b72e7.tar.gz
fix warning 'nohup: redirecting stderr to stdout'
related issue https://github.com/gitlabhq/gitlabhq/issues/2045
Diffstat (limited to 'resque.sh')
-rwxr-xr-xresque.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/resque.sh b/resque.sh
index 0ebf319efc1..145440fa814 100755
--- a/resque.sh
+++ b/resque.sh
@@ -1,2 +1,2 @@
mkdir -p tmp/pids
-nohup bundle exec rake environment resque:work QUEUE=post_receive,mailer,system_hook RAILS_ENV=production PIDFILE=tmp/pids/resque_worker.pid > ./log/resque.log &
+nohup bundle exec rake environment resque:work QUEUE=post_receive,mailer,system_hook RAILS_ENV=production PIDFILE=tmp/pids/resque_worker.pid > ./log/resque.stdout.log 2>./log/resque.stderr.log & \ No newline at end of file