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 content-length of the response or set Response#chunked = true

What does this mean and how can I remove it? Is it a problem?

link|improve this question

Same here, for me it is happening when it's a remote call via JS. – Tim Aug 25 '11 at 12:27
1  
I started getting this as soon as I upgraded to Ruby 1.9.3 today. Wasn't seeing it before. I think it must be due to changes in WEBrick in Ruby 1.9.3... – Tyler Rick Nov 18 '11 at 19:56
22  
It is indeed a WEBrick issue. In the meantime, you could add the 'thin' gem to your Gemfile and boot Rails with that instead of WEBrick, e.g. rails s thin; Ta-da! No more warnings. – Scott Lowe Dec 4 '11 at 14:08
feedback

4 Answers

up vote 74 down vote accepted

Asked the same question to one of Rails-Core's members:

https://twitter.com/#!/luislavena/status/108998968859566080

And the answer:

https://twitter.com/#!/tenderlove/status/108999110136303617

ya, it's fine. Need to clean it up, but nothing is being hurt.

link|improve this answer
2  
Thank you! I thought this question to be lost in the "pits of despair"! <in a hoarse voice imitating the torture guy from The Princess Bride> – Nate Bird Sep 1 '11 at 13:20
5  
fyi, if the messages bother you, as a workaround you can use thin (add gem 'thin' to your gemfile, start your server using rails server thin). (oops, just noticed that @Scott Lowe already said this above.) – fearless_fool Dec 26 '11 at 19:33
9  
I find this annoying when these kinds of things are put in the category of "nothing is being hurt". Just the fact that thousands of people are wasting time having to figure out what is going on is enough to dispute that. – Ken Thompson Apr 2 at 12:36
@KenThompson the problem is Webrick, not Rails. Webrick do not support keep-alive connections and thus raises the warning/issue we're seeing. It is recommended you use a proper/better webserver (like thin or passenger standalone) for web. Upcoming versions of Ruby will fix this issue. – Luis Lavena Apr 4 at 23:16
The webrick server on our development PC renders the same .js.erb file twice. The twice rendering problem disappears on our production server which is running nginx. So this is a REAL problem in cases like ours. – user938363 Apr 24 at 15:26
feedback

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.

link|improve this answer
1  
This worked a treat, thanks a log @jsoares. – Matthew O'Riordan Apr 8 at 17:08
feedback

You can also use Thin instead of the default Webrick. Add this to Gemfile gem 'thin'

then rails s will use thin, and the warn will disappear.

link|improve this answer
Yes. This is what I've ended up doing in more recent months. Ryan Bates also mentioned in a recent Railscast. – Nate Bird Apr 20 at 17:41
feedback

Another workaround that removes the offending line from webrick. It's just not that useful:

cd `which ruby`/../../lib/ruby/1.9.1/webrick/ && sed -i '.bak' -e'/logger.warn/d' httpresponse.rb

(you may need to sudo)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.