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

15 lines
286 B
Ruby

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