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.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/unicorn.rb b/lib/unicorn.rb
index 8754610..0727456 100644
--- a/lib/unicorn.rb
+++ b/lib/unicorn.rb
@@ -131,13 +131,6 @@ module Unicorn
       @pid = path
     end
 
-    # sets the path for running the master and worker process, useful for
-    # running and reexecuting from a symlinked path like Capistrano allows
-    def directory=(path)
-      Dir.chdir(path) if path
-      @directory = path
-    end
-
     # add a given address to the +listeners+ set, idempotently
     # Allows workers to add a private, per-process listener via the
     # @after_fork hook.  Very useful for debugging and testing.
@@ -331,7 +324,7 @@ module Unicorn
         ENV.replace(@start_ctx[:environ])
         ENV['UNICORN_FD'] = @listeners.map { |sock| sock.fileno }.join(',')
         File.umask(@start_ctx[:umask])
-        Dir.chdir(@directory || @start_ctx[:cwd])
+        Dir.chdir(@start_ctx[:cwd])
         cmd = [ @start_ctx[:zero] ] + @start_ctx[:argv]
         logger.info "executing #{cmd.inspect} (in #{Dir.pwd})"
         exec(*cmd)