You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standard Rails new using Rails 7.0.0-alpha2 and Ruby 3.0.3 (same issue with 3.0.2)
Local Postgresql 12 database
Run rails new testapp -d postgresql
Edit puma.rb, uncomment (enable) web concurrency and preload_app! (cluster mode)
Add and configure either of mobility or good_job separately and no problem. But together is a problem. good_job setup
Run rails server
Expected Behavior
Be able to open 127.0.0.1:3000 in your web browser
Actual Behavior
Browser hangs, request doesn't come through on the terminal.
Workaround
Disable web concurrency and run Puma in single mode and then requests run properly. But of course this all works with Puma web concurrency in Rails 6.1.4.1, not sure what changed in Rails 7.0.0-alpha2
The text was updated successfully, but these errors were encountered:
Context
Standard Rails new using Rails 7.0.0-alpha2 and Ruby 3.0.3 (same issue with 3.0.2)
Local Postgresql 12 database
Run
rails new testapp -d postgresql
Edit puma.rb, uncomment (enable) web concurrency and preload_app! (cluster mode)
Add and configure either of mobility or good_job separately and no problem. But together is a problem.
good_job setup
Run
rails server
Expected Behavior
Be able to open 127.0.0.1:3000 in your web browser
Actual Behavior
Browser hangs, request doesn't come through on the terminal.
Workaround
Disable web concurrency and run Puma in single mode and then requests run properly. But of course this all works with Puma web concurrency in Rails 6.1.4.1, not sure what changed in Rails 7.0.0-alpha2
The text was updated successfully, but these errors were encountered: