about summary refs log tree commit homepage
path: root/lib/unicorn
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-10-27 12:46:46 -0700
committerEric Wong <normalperson@yhbt.net>2010-10-27 12:46:46 -0700
commitf62c5850d7d17d7b5e301a494f8bdf5be3674411 (patch)
treead18253034f82ad51b77f3334884291b73d3b38b /lib/unicorn
parentc7feb7e10a937df2dc72f53aa6cc1ebda4c1cd3b (diff)
downloadunicorn-f62c5850d7d17d7b5e301a494f8bdf5be3674411.tar.gz
It's less ambiguous since this is a network server after all.
Diffstat (limited to 'lib/unicorn')
-rw-r--r--lib/unicorn/configurator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/configurator.rb b/lib/unicorn/configurator.rb
index 4acf3c6..9355c66 100644
--- a/lib/unicorn/configurator.rb
+++ b/lib/unicorn/configurator.rb
@@ -51,7 +51,7 @@ class Unicorn::Configurator
     self.after_reload = defaults.delete(:after_reload)
 
     set.merge!(DEFAULTS) if use_defaults
-    defaults.each { |key, value| self.send(key, value) }
+    defaults.each { |key, value| self.__send__(key, value) }
     Hash === set[:listener_opts] or
         set[:listener_opts] = Hash.new { |hash,key| hash[key] = {} }
     Array === set[:listeners] or set[:listeners] = []