about summary refs log tree commit homepage
path: root/lib/rainbows/http_server.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-03-20 03:07:31 +0000
committerEric Wong <normalperson@yhbt.net>2011-03-20 03:07:31 +0000
commitc7e75cfe241a621f50c750720c47149a156e8e7f (patch)
treefc00265a91e54cd14af77da683235ecc0a865185 /lib/rainbows/http_server.rb
parentd327a0d468e5b5cfb05bb56621fb22d156ce3a40 (diff)
downloadrainbows-c7e75cfe241a621f50c750720c47149a156e8e7f.tar.gz
Run under 1.9.3dev
Diffstat (limited to 'lib/rainbows/http_server.rb')
-rw-r--r--lib/rainbows/http_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/http_server.rb b/lib/rainbows/http_server.rb
index ab214c3..0fb60fe 100644
--- a/lib/rainbows/http_server.rb
+++ b/lib/rainbows/http_server.rb
@@ -9,7 +9,7 @@ class Rainbows::HttpServer < Unicorn::HttpServer
   def initialize(app, options)
     Rainbows.server = self
     @logger = Unicorn::Configurator::DEFAULTS[:logger]
-    rv = super(app, options)
+    super(app, options)
     defined?(@use) or use(:Base)
     @worker_connections ||= Rainbows::MODEL_WORKER_CONNECTIONS[@use]
   end