We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e626852 + ec6dace commit 1f77059Copy full SHA for 1f77059
CHANGELOG.md
@@ -1,5 +1,7 @@
1
# Unreleased
2
3
+- Fix compatibility with `connection_pool` version 3+.
4
+
5
# 0.26.1
6
7
- Fix a few corner cases where `RedisClient::Error#final?` was innacurate.
lib/redis_client/pooled.rb
@@ -23,7 +23,7 @@ def initialize(
23
end
24
25
def with(options = EMPTY_HASH)
26
- pool.with(options) do |client|
+ pool.with(**options) do |client|
27
client.connect_timeout = connect_timeout
28
client.read_timeout = read_timeout
29
client.write_timeout = write_timeout
0 commit comments