This is a problem of Webrick.
you can use “Thin” instead.
Add this to Gemfile
gem 'thin'
then rails s
will use thin instead of Webrick, and the warn will disappear.
This is a problem of Webrick.
you can use “Thin” instead.
Add this to Gemfile
gem 'thin'
then rails s
will use thin instead of Webrick, and the warn will disappear.