-
Using total and at methods with active job always returns `0`. I think the problem come from trying to access `@jid` which is always return `nil`. so any idea how to fix that?
-
Tags work:
`ChargeCreditCard.enqueue(card.id, user_id: current_user.id, job_options: { tags: ["hello"] })`
Tags don't work:
`ChargeCreditCard.perform_later(card.id, user_id: current_user.id, job_…
-
WHen implementing background jobs, the Rails framework provides a built-in solution: [ActiveJob](https://guides.rubyonrails.org/active_job_basics.html). While Sidekiq workers can be used too, I would …
-
So maybe the entire edit form is hidden/greyed-out on the UI and there's a model validation that catches if the state isn't either 'idle' or 'error'?
This way we can put in better validation tests to…
-
I have encountered an issue where the Redmine Enhanced UX 1.0.0 plugin does not work properly when used alongside the Purplemine 2 Master theme.
Details:
Environment:
Redmine version …
-
Yes, I think `silence_queries` would work 👍🏻
_Originally posted by @rosa in https://github.com/rails/solid_queue/issues/198#issuecomment-2048122748_
As mentioned in #19…
-
I noticed my `inline` jobs were (surprise) being run inline during tests. The simplest fix is to move `config.active_job.queue_adapter = :async_job` into `config/environments/production.rb` only, whic…
-
This would allow using another storage medium (e.g. ActiveRecord), and another Queue (RabbitMQ).
Seems fairly straightforward so long as the storage driver can implement: get, set, query, transaction…
-
**Message**
```
undefined method `dig' for an instance of String
```
**Backtrace (last 10 lines)**
```
lib/internet_archive/capture.rb:25 status
lib/internet_archive/capture.rb:17 finished?
app/m…
-
I use ActiveJob with resque_history plugin for monitoring done tasks.
Firstly I include this string require **_'resque-history/server'**_ into routes file, and then I see new history tab in dashboard…