Why this matters
Prevents typos and keeps routing consistent.
Centralize queue names and reuse across workers and tests.
Prevents typos and keeps routing consistent.
Side-by-side examples engineers can pattern-match during review.
sidekiq_options queue: "critical"module Queues
CRITICAL = "critical".freeze
end
sidekiq_options queue: Queues::CRITICALqueue: "emails"queue: Queues::EMAILSFrom the same buckets as this rule.