mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a75f085941
git-subtree-dir: activejob git-subtree-mainline:b45b99894a
git-subtree-split:14f74a8331
15 lines
224 B
Ruby
15 lines
224 B
Ruby
require 'active_job/arguments'
|
|
|
|
module ActiveJob
|
|
module Identifier
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
attr_writer :job_id
|
|
end
|
|
|
|
def job_id
|
|
@job_id ||= SecureRandom.uuid
|
|
end
|
|
end
|
|
end
|