about summary refs log tree commit homepage
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 21:17:48 +0000
commit5e672c48d8a3555e4a01f653fb2e0b3556087737 (patch)
tree28c3512279ddf0a48adfa6af77dbc0194f912edf
parent928a88d5419210380078a2e141cb64d308719295 (diff)
downloadunicorn-5e672c48d8a3555e4a01f653fb2e0b3556087737.tar.gz
It's less ambiguous since this is a network server after all.
(cherry picked from commit f62c5850d7d17d7b5e301a494f8bdf5be3674411)
-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 533e0ed..a927ed8 100644
--- a/lib/unicorn/configurator.rb
+++ b/lib/unicorn/configurator.rb
@@ -47,7 +47,7 @@ module Unicorn
       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] = []