From a934bafd9fcf94b2d96a9b465a051f0a329b72e7 Mon Sep 17 00:00:00 2001 From: anton troyanov Date: Wed, 26 Dec 2012 16:36:40 +0400 Subject: [PATCH] fix warning 'nohup: redirecting stderr to stdout' related issue https://github.com/gitlabhq/gitlabhq/issues/2045 --- resque.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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