delayed_job icon indicating copy to clipboard operation
delayed_job copied to clipboard

Database based asynchronous priority queue system -- Extracted from Shopify

Results 142 delayed_job issues
Sort by recently updated
recently updated
newest added

`ActiveSupport::ProxyObject` has been [deprecated](https://github.com/rails/rails/commit/ea7d3c5165d5c7b6d77943482471335d828047ad) on Rails main i.e. `7.2.0.alpha`. The recommended alternative is Ruby's `BasicObject`: ``` Delayed::Compatibility.proxy_object_class DEPRECATION WARNING: ActiveSupport::ProxyObject is deprecated and will be removed in Rails 7.3. Use...

Hi, We are using Delayed Job in our rails application. For production, we recently added an additional secondary server to balance the load on the application. As the 2 servers...

PROBLEM Delayed Job essentially orphans workers when you change the worker count from 1 to 2+, or vice versa, and `restart`. By that I mean Delayed Job allows certain workers...

Following an upgrade to Rails 6, I started having problems being unable to stop workers running using the `stop` command. Basically, it didn't stop the workers. `./script/delayed_job status` also reported...

Open this issue after not getting a response from this comment: https://github.com/collectiveidea/delayed_job/issues/832#issuecomment-1930342987 Currently, we are implementing job-level `max_run_time` for our application. Normally, if the process doesn't die, it works as...

Hello I try to use delayed_job as ActiveJob for decidim to send mail as indicated in the decidim official documentation: https://docs.decidim.org/en/develop/services/activejob But it doesn't work, delayed_job generate the email but...

Hello, we've been using delayed-job for years (mostly to send emails) with millions of jobs without a problem. We recently updated to stay on LTS for Rails, and it might...

When queuing jobs with the `delay.method(params)` syntax, if the object contains dates or datetimes, this will raise a warning about the deprecated nature of calling #to_s on a date object....

We're trying to get all logging for delayed_job into its own delayed_job.log. We've done the config line from the readme ``` Delayed::Worker.logger = Logger.new(Rails.root.join('log/delayed_job.log')) ``` But are still seeing messages...

- Add Ruby 3.3 and Rails 7.1 - Move EOL Rails versions to the lower section, with one build each. - Introduce a dedicated section for Ruby 2.7 and Ruby...