aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib
diff options
context:
space:
mode:
authorutilum <oz@utilum.com>2016-09-22 17:17:28 +0200
committerutilum <oz@utilum.com>2017-06-27 07:08:55 +0200
commitb58d73fc5771338a10fcdac7beea577b7a23ea78 (patch)
tree29d9052d339d0528da859ac32997b7b075034510 /activejob/lib
parent61cc630ac7e7f8554dc049a3e5a2509c00303ef8 (diff)
downloadrails-b58d73fc5771338a10fcdac7beea577b7a23ea78.tar.gz
rails-b58d73fc5771338a10fcdac7beea577b7a23ea78.tar.bz2
rails-b58d73fc5771338a10fcdac7beea577b7a23ea78.zip
ActiveJob::Core#serialize stores provider_job_id (fixes #26581).
Diffstat (limited to 'activejob/lib')
-rw-r--r--activejob/lib/active_job/core.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activejob/lib/active_job/core.rb b/activejob/lib/active_job/core.rb
index 548ec89ee2..e3e63f227e 100644
--- a/activejob/lib/active_job/core.rb
+++ b/activejob/lib/active_job/core.rb
@@ -80,6 +80,7 @@ module ActiveJob
{
"job_class" => self.class.name,
"job_id" => job_id,
+ "provider_job_id" => provider_job_id,
"queue_name" => queue_name,
"priority" => priority,
"arguments" => serialize_arguments(arguments),