From 3d671b369102788a07e6d8865433d6175f86cd5a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 13 May 2009 17:45:37 +0000 Subject: http_response: allow string status codes Rack::Lint says they just have to work when to_i is called on the status, so that's what we'll do. --- lib/unicorn/http_response.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/unicorn/http_response.rb') diff --git a/lib/unicorn/http_response.rb b/lib/unicorn/http_response.rb index ce04a0d..15df3f6 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] + status = CODES[status.to_i] OUT.clear # Don't bother enforcing duplicate supression, it's a Hash most of -- cgit v1.2.3-24-ge0c7