rack-attack/lib
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
..
rack fix: Fix redis-rb 4.6.0 deprecation warnings 2022-02-04 21:14:00 +01:00