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

Currently, there are two types of `DeserializationError`s: 1) The handler code itself is malformed, e.g. triggered by a `Psych::SyntaxError` 2) The payload object is not found in the database (refer...

Deleting failed jobs after 25 attempts, both by default, is extreme. Since most people don't RTFM, letting failed jobs persist and trying only three times surface potential problems sooner.

I'm following the instructions at http://railscasts.com/episodes/314-pretty-urls-with-friendlyid?view=asciicast and coming up with some problems trying to execute the `Article.find_each(&:save)` command. Specifically, what appears to be happening is that the entire object to...

The current solution to delayed mail delivery renders the mail template at delivery time: ``` Notifier.delay.signup(@user) ``` This can lead to problems, if your data that is accessed by the...

This is a change to allow specifying the per-worker max run time via the command line, either via MAX_RUN_TIME env variable, or --max-run-time option to the script. There's no current...

The job usually determines the priority in my projects, so it makes sense to specify it there. ``` NewsletterJob = Struct.new(:text, :emails) do def perform emails.each { |e| NewsletterMailer.deliver_text_to_email(text, e)...

The worker incorrectly logs that the job is removed when destroy_failed_jobs? is false

As my use-case is to take advantage of having multiple queues and dedicating workers with overlapping coverage of them (to ensure that jobs in the high_priority queue have more workers...

GET 'https://codecov.io/api/v2/{{ SERVICE NAME }}/{{ ORGANIZATION NAME }}/users' \ --header 'Authorization: bearer {{ ACCESS TOKEN }}'

Implements adapter for `ActiveJob` inside the gem. This adapter is defined only if rails version is >=8, for earlier rails versions adapter is defined inside the Rails itself. I'm not...