about summary refs log tree commit homepage
path: root/lib/rainbows/http_server.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-17 22:42:55 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-17 22:42:55 -0700
commitb79ce7e6594259669763251e3cbf4404a6381d7c (patch)
tree6f1b55b1301107ea3e6bdbf21ecf9dd90cfca2a9 /lib/rainbows/http_server.rb
parente0c33c583c5b4d2a4661edb6c41d6a60b44dae9d (diff)
downloadrainbows-b79ce7e6594259669763251e3cbf4404a6381d7c.tar.gz
It's more fool-proof this way and prevents us from using
idiotic/non-obvious concurrency model names.
Diffstat (limited to 'lib/rainbows/http_server.rb')
-rw-r--r--lib/rainbows/http_server.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rainbows/http_server.rb b/lib/rainbows/http_server.rb
index fc51ac3..6d61228 100644
--- a/lib/rainbows/http_server.rb
+++ b/lib/rainbows/http_server.rb
@@ -32,6 +32,7 @@ module Rainbows
         raise ArgumentError, "concurrency model #{model.inspect} not supported"
       extend(mod)
       Const::RACK_DEFAULTS['rainbows.model'] = @use = model
+      Const::RACK_DEFAULTS['rack.multithread'] = !!(/Thread/ =~ model.to_s)
     end
 
     def worker_connections(*args)