diff options
author | anton troyanov <anton@troyanov.net> | 2012-12-26 16:36:40 +0400 |
---|---|---|
committer | anton troyanov <anton@troyanov.net> | 2012-12-26 16:36:40 +0400 |
commit | a934bafd9fcf94b2d96a9b465a051f0a329b72e7 (patch) | |
tree | 288c6a17c55c8c427527201a09fd204a0566f0c9 /resque.sh | |
parent | 70ebcf250a067b1118b317f233574ff714841a4f (diff) | |
download | gitlab-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-x | resque.sh | 2 |
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 |