Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: redis/redis-rb#1059
- Loading branch information