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

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

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