Rails Update to 3.2.11 breaks running multiple servers

前端 未结 3 733
醉梦人生
醉梦人生 2020-12-06 01:20

Our application runs two Rails servers at different ports that talk to each other. Using Rails 3.2.8, I could open a terminal, cd to the project, run rail

3条回答
  •  死守一世寂寞
    2020-12-06 02:12

    Posted elsewhere on Stackoverflow was the mention that if you have problems with rails 3.2.11, try locking rack at 1.4.1. This seems to work so far. I added:

    gem 'rack' , '1.4.1'
    

    to the gemfile, and then executed

    bundle update rack
    

提交回复
热议问题