about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-08-06 15:42:41 -0700
committerEric Wong <normalperson@yhbt.net>2009-08-06 15:46:00 -0700
commit13c71ade9b8860e7cc49f86edb3490235fd1bce6 (patch)
treefb00444ea428a2345f78d4009ace6f8c8c7cbe7b
parent018f90f0394e83e99aff543e7f4c1ae69f39a6fc (diff)
downloadunicorn-13c71ade9b8860e7cc49f86edb3490235fd1bce6.tar.gz
Rack::Utils::HTTP_STATUS_CODES does not define all status codes
that are assigned by IANA nor does it handle
experimental/unknown/ad-hoc status codes.  So fall back to
blindly accepting the status code as given by the application
and hope it works.
-rw-r--r--lib/unicorn/http_response.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/http_response.rb b/lib/unicorn/http_response.rb
index 15df3f6..3bf9347 100644
--- a/lib/unicorn/http_response.rb
+++ b/lib/unicorn/http_response.rb
@@ -37,7 +37,7 @@ module Unicorn
     # writes the rack_response to socket as an HTTP response
     def self.write(socket, rack_response)
       status, headers, body = rack_response
-      status = CODES[status.to_i]
+      status = CODES[status.to_i] || status
       OUT.clear
 
       # Don't bother enforcing duplicate supression, it's a Hash most of