aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-03-14 19:10:09 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-03-14 19:10:09 +0900
commit272058b4dca454a63c8931fdd2fd9ac8ea036e30 (patch)
tree4d4a9d8fe846ba6cd830c357ff1fb6ab943b7588 /guides
parentfeef64cee4497ed4cdab04fffd37204c84452cee (diff)
downloadrails-272058b4dca454a63c8931fdd2fd9ac8ea036e30.tar.gz
rails-272058b4dca454a63c8931fdd2fd9ac8ea036e30.tar.bz2
rails-272058b4dca454a63c8931fdd2fd9ac8ea036e30.zip
add `queue_classic` to list of provide `provider_job_id` [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/5_0_release_notes.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md
index 7c11fad7bf..8f664d4215 100644
--- a/guides/source/5_0_release_notes.md
+++ b/guides/source/5_0_release_notes.md
@@ -621,10 +621,11 @@ Please refer to the [Changelog][active-job] for detailed changes.
* A generated job now inherits from `app/jobs/application_job.rb` by default.
([Pull Request](https://github.com/rails/rails/pull/19034))
-* Allow `DelayedJob`, `Sidekiq`, `qu`, and `que` to report the job id back to
- `ActiveJob::Base` as `provider_job_id`.
+* Allow `DelayedJob`, `Sidekiq`, `qu`, `que`, and `queue_classic` to report
+ the job id back to `ActiveJob::Base` as `provider_job_id`.
([Pull Request](https://github.com/rails/rails/pull/20064),
- [Pull Request](https://github.com/rails/rails/pull/20056))
+ [Pull Request](https://github.com/rails/rails/pull/20056),
+ [commit](https://github.com/rails/rails/commit/68e3279163d06e6b04e043f91c9470e9259bbbe0))
* Implement a simple `AsyncJob` processor and associated `AsyncAdapter` that
queue jobs to a `concurrent-ruby` thread pool.