From 0372232d3e44aaf735d47996792eb46282fc209a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 4 Mar 2009 01:56:12 -0800 Subject: Ensure reopened std{out,err}_paths can be rotated The $stderr/$stdout objects need to point to +File+ objects and mot just +IO+ objects they default to for reopen_logs to work. --- lib/unicorn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/unicorn.rb b/lib/unicorn.rb index 72dc56b..8754610 100644 --- a/lib/unicorn.rb +++ b/lib/unicorn.rb @@ -90,8 +90,8 @@ module Unicorn raise ArgumentError, "no listeners" if @listeners.empty? self.pid = @config[:pid] build_app! if @preload_app - $stderr.reopen(@stderr_path, "a") if @stderr_path - $stdout.reopen(@stdout_path, "a") if @stdout_path + $stderr.reopen(File.open(@stderr_path, "a")) if @stderr_path + $stdout.reopen(File.open(@stdout_path, "a")) if @stdout_path $stderr.sync = $stdout.sync = true spawn_missing_workers self -- cgit v1.2.3-24-ge0c7