Railsサーバーを起動しようとしましたが、以下のエラーメッセージが表示されました。どうすれば修正できますか?
C:\Sites\sample_app>rails s
=> Booting Puma
=> Rails 5.1.4 application starting in development
=> Run `rails server -h` for more startup options
Please add the following to your Gemfile to avoid polling for changes:
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
Please add the following to your Gemfile to avoid polling for changes:
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
ERROR: worker mode not supported on JRuby or Windows
Exiting
Puma のこの問題ページによると、puma.rb の次の行をコメントアウトすることで解決できるとのことです。
workers Integer(ENV['WEB_CONCURRENCY'] || 2)