about summary refs log tree commit homepage
path: root/lib/unicorn.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicorn.rb')
-rw-r--r--lib/unicorn.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unicorn.rb b/lib/unicorn.rb
index c1d68c1..c6a4e36 100644
--- a/lib/unicorn.rb
+++ b/lib/unicorn.rb
@@ -94,8 +94,8 @@ module Unicorn
       raise ArgumentError, "no listeners" if @listeners.empty?
       self.pid = @config[:pid]
       build_app! if @preload_app
-      $stderr.reopen(File.open(@stderr_path, "a")) if @stderr_path
-      $stdout.reopen(File.open(@stdout_path, "a")) if @stdout_path
+      File.open(@stderr_path, "a") { |fp| $stderr.reopen(fp) } if @stderr_path
+      File.open(@stdout_path, "a") { |fp| $stdout.reopen(fp) } if @stdout_path
       $stderr.sync = $stdout.sync = true
       spawn_missing_workers
       self