The following patch solved the problem on my case, no more warnings for me.
204_304_keep_alive.patch
Just edit the file httpresponse.rb at line 205 as showed on the link above, in fact the link shows a correction made to a future release of ruby.
I'm using rails 3.2.0 on ruby 1.9.3-p0 installed through rvm in single user. So the location in my case is:
~/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpresponse.rb
The location of the file to be altered is different depending on the type of installation, rvm or not, or even multiuser or single user, so I'm just giving the last part of it:
.../ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpresponse.rb
I hope this can be helpfull to someone...
EDIT: This is the link to the commit that altered the line in question in the trunk branch of ruby project.
rails s thin; Ta-da! No more warnings. – Scott Lowe Dec 4 '11 at 14:08