25 lines
633 B
Ruby
25 lines
633 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Redis
|
||
|
# Pseudo-store to transition `Gitlab::SidekiqMiddleware::DuplicateJobs` from
|
||
|
# using `Sidekiq.redis` to using the `SharedState` redis store.
|
||
|
class DuplicateJobs < ::Gitlab::Redis::Wrapper
|
||
|
class << self
|
||
|
def store_name
|
||
|
'SharedState'
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def redis
|
||
|
primary_store = ::Redis.new(Gitlab::Redis::SharedState.params)
|
||
|
secondary_store = ::Redis.new(Gitlab::Redis::Queues.params)
|
||
|
|
||
|
MultiStore.new(primary_store, secondary_store, name.demodulize)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|