good_job: Updating good_job breaks my Rails 7 alpha 2 local development
bundle outdated good_job 2.7.0 2.7.2 ~> 2.4, >= 2.4.2 default
After running bundle update
good_job gets mixed in with Puma initialization messages and then I can’t get rails server
to server pages in local development. Just hangs.
On the otherhand, at good_job 2.7.0
I’m also getting
[GoodJob] Notifier unsubscribed with UNLISTEN
[GoodJob] Notifier errored: no connection to the server
but I can access the site in the browser…
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Comments: 24 (9 by maintainers)
The “notifier errored” message is not normal.
You could add
GoodJob.on_thread_error = ->(e) { puts e }
[fixed] to your initializer to see if it outputs a better error message.I’ll pick this up tomorrow (Pacific time).