mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
89df4f2e0c
Changes in `queue_name_prefix` no longer affects unrelated jobs.
7 lines
131 B
Ruby
7 lines
131 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PrefixedJob < ActiveJob::Base
|
|
self.queue_name_prefix = "production"
|
|
|
|
def perform; end
|
|
end
|