about summary refs log tree commit homepage
path: root/lib/rainbows/process_client.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-01-20 22:15:12 +0000
committerEric Wong <normalperson@yhbt.net>2011-01-20 22:15:12 +0000
commitea4a01df8b1fa29e2088816f4734bb0073eb9380 (patch)
tree95595c773c63f228b5b2fc420ac2adba87097a80 /lib/rainbows/process_client.rb
parent7ec2e407206036a993aadbcd39b13a2d86b7a288 (diff)
downloadrainbows-ea4a01df8b1fa29e2088816f4734bb0073eb9380.tar.gz
The WebSocket protocol is still undergoing changes and unused.
We won't waste time supporting it until it's finalized and
doesn't break HTTP.
Diffstat (limited to 'lib/rainbows/process_client.rb')
-rw-r--r--lib/rainbows/process_client.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/rainbows/process_client.rb b/lib/rainbows/process_client.rb
index 2ddc368..bf6d20b 100644
--- a/lib/rainbows/process_client.rb
+++ b/lib/rainbows/process_client.rb
@@ -6,7 +6,6 @@ module Rainbows::ProcessClient
 
   NULL_IO = Unicorn::HttpRequest::NULL_IO
   RACK_INPUT = Unicorn::HttpRequest::RACK_INPUT
-  CLIENT_IO = "hack.io".freeze
   IC = Unicorn::HttpRequest.input_class
 
   def process_loop
@@ -46,6 +45,5 @@ module Rainbows::ProcessClient
 
   def set_input(env, hp)
     env[RACK_INPUT] = 0 == hp.content_length ? NULL_IO : IC.new(self, hp)
-    env[CLIENT_IO] = self
   end
 end