solid_queue icon indicating copy to clipboard operation
solid_queue copied to clipboard

Database-backed Active Job backend

Results 135 solid_queue issues
Sort by recently updated
recently updated
newest added

Hi team, I understand the current state of the test suite is not ideal - some tests are flaky. I'd love to help improve this. Ensuring test reliability should be...

`record(param)&.update!(params(param)) || RecordClass.create!(params(param))` ``` def record(param) RecordClass.find_by( field1: 'a', field2: 'b', field3: 'c', field4: [param] ) end ``` I have a background job to create or update a record, as...

Hi! I am moving my workers from http://github.com/javan/whenever schedule to `solid_queue` and the `command` key in recurring tasks could be improved with rake tasks handling. Here's a simple example based...

Hey there 👋 We're seeing an issue where some *finished* jobs are unexpectedly ending up in the failed jobs morgue with the following error: `SolidQueue::Processes::ProcessPrunedError` some other jobs genuinely fail,...

We have some situations where we get ProcessPrunedErrors for jobs that were on killed workers (in Kubernetes). We need a way to have those retried. `on_thread_error` seems like it might...