gitlab-ce/lib/gitlab/redis/cluster_db_load_balancing.rb

15 lines
311 B
Ruby

# frozen_string_literal: true
module Gitlab
module Redis
class ClusterDbLoadBalancing < ::Gitlab::Redis::Wrapper
class << self
# The data we store on DbLoadBalancing used to be stored on SharedState.
def config_fallback
SharedState
end
end
end
end
end