aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job/identifier.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/lib/active_job/identifier.rb')
-rw-r--r--activejob/lib/active_job/identifier.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/activejob/lib/active_job/identifier.rb b/activejob/lib/active_job/identifier.rb
deleted file mode 100644
index c7f522087d..0000000000
--- a/activejob/lib/active_job/identifier.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-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