about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/unicorn.rb4
1 files 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