Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cluster_cache.rb « redis « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15a87739c6df63ef8fdaa7d411e7faf409378f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module Redis
    class ClusterCache < ::Gitlab::Redis::Wrapper
      class << self
        def config_fallback
          Cache
        end
      end
    end
  end
end