mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
14 lines
214 B
Ruby
14 lines
214 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Redis
|
|
class Pubsub < ::Gitlab::Redis::Wrapper
|
|
class << self
|
|
def config_fallback
|
|
SharedState
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|