rack-attack/lib/rack
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
..
attack fix: Fix redis-rb 4.6.0 deprecation warnings 2022-02-04 21:14:00 +01:00
attack.rb refactor: attempt to make method name more self explanatory and clear 2022-01-29 15:06:13 -03:00