Ben Sheldon [he/him]
Ben Sheldon [he/him]
❤️ Thank you for looking into this! This matches up with my expectations of the benefit (database connections), the reality (there's no free lunch for performance), and the elephant in...
@julik would you be able to DM me? - [Rails Link Slack](https://www.rubyonrails.link) (`@bensheldon`), or - [Rails](https://discord.com/invite/d8N68BCw49) or [Ruby](https://discord.gg/ad2acQFtkh) Discords (`@bensheldon`)
> Some other peers don't actually offer priority ordering, and not everyone has this use case -- how about the ability to configure it on or off, if you don't...
I'm open if you think you can make it work fitting that info into the table. For formatting the job arguments, it hasn't been top of my priority list, so...
@Jay-Schneider Thanks for opening this issue. I agree that there are lots of painful edges right now with internationalization. I just pushed up #923 which I think should allow setting...
@Jay-Schneider fyi, I just released [`v3.15.1`](https://github.com/bensheldon/good_job/releases/tag/v3.15.1) which has the fix for setting a default via routes.
I put together an `I18n::Config` monkeypatch that will allow setting a `default_locale` and disable `enforce_available_locales` in a thread-local way. It's a little gross 🤷🏻 I tried to figure out how...
Great feature request. Something like that doesn't currently exist. Currently, it's possible to manually Discard each of the jobs within a batch, but that would still result in the Batch...
If you simply want a workaround, you could discard all of the jobs this way: ```ruby # Uses private APIs, so no promises this will continue working batch._record.jobs.where(performed_at: nil).each do...
...and now that I'm looking through the manual job actions `GoodJob::Job#discard_job` and `GoodJob::Job#retry_job` I'm noticing that they aren't batch aware and don't trigger batch callbacks. That could be a bug,...