gitlab-org--gitlab-foss/lib/gitlab/redis/rate_limiting.rb

13 lines
253 B
Ruby

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