Since upgrading to Rails 3.1 I\'m seeing this warning message in my development log:
WARN Could not determine content-length of response body. Set co
You can also use Thin instead of the default Webrick. Add this to Gemfile gem 'thin'
Gemfile
gem 'thin'
then rails s thin will use thin, and the warning will disappear.
rails s thin