rack-attack/lib/rack/attack/store_proxy
Alexey Zapparov c01208afe6
fix: Fix redis-rb 4.6.0 deprecation warnings
Redis 4.6.0 deprecated calling commands on `Redis` inside `#pipelined`:

    redis.pipelined do
      redis.get("key")
    end

The above should be:

    redis.pipelined do |pipeline|
      pipeline.get("key")
    end

See: https://github.com/redis/redis-rb/pull/1059
2022-02-04 21:14:00 +01:00
..
active_support_redis_store_proxy.rb Make store proxies lookup dynamic 2019-10-25 01:41:24 +03:00
dalli_proxy.rb Make store proxies lookup dynamic 2019-10-25 01:41:24 +03:00
mem_cache_store_proxy.rb support rails 7.0 2021-11-17 11:33:17 -07:00
redis_cache_store_proxy.rb Fix Ruby 2.7 kwargs warning in RedisCacheStoreProxy 2020-12-15 23:25:37 +09:00
redis_proxy.rb fix: Fix redis-rb 4.6.0 deprecation warnings 2022-02-04 21:14:00 +01:00
redis_store_proxy.rb Make store proxies lookup dynamic 2019-10-25 01:41:24 +03:00