1. ホーム
  2. ruby-on-rails

[解決済み] WARN レスポンスボディのcontent-lengthを決定できませんでした。レスポンスのcontent-lengthを設定するか、Response#chunked = trueを設定する [重複]。

2022-08-30 04:46:08

質問

重複の可能性があります。

WARN Could not determine content-length of response body." は何を意味し、どのように私はそれを取り除くのですか?

私はちょうどrails 3.2.2にアップグレードしました、そして今rails s、ページロードで、私はログにこれらのすべてのエラーを得ます。

[2012-03-07 19:46:14] WARN  Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
[2012-03-07 19:46:14] WARN  Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true

以前のSOのスレッドあたりで、以下を試してみました。

/config/application.rb

config.assets.logger = false
config.assets.logger = nil

どれもうまくいきませんでした。このエラーのログを無効にする方法について、何かアイデアがありますか?または問題を修正するために :)

ありがとうございます。

どのように解決するのですか?

これは Webrick の問題です。 代わりに "Thin"を使用することができます。

Gemfileに追加する。

gem 'thin'

では rails s は Webrick の代わりに thin を使用し、警告は消えます。