Skip to content

Commit 6487485

Browse files
authored
Correctly pass @options to Async::Redis::Client instances created by Async::Redis::ClusterClient. (#60)
1 parent 0e73e61 commit 6487485

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/async/redis/cluster_client.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def clear
5656
# @property endpoints [Array(Endpoint)] The list of cluster endpoints.
5757
def initialize(endpoints, **options)
5858
@endpoints = endpoints
59+
@options = options
5960
@shards = nil
6061
end
6162

@@ -93,15 +94,15 @@ def client_for(slot, role = :master)
9394
end
9495

9596
if node = nodes.sample
96-
return (node.client ||= Client.new(node.endpoint))
97+
return (node.client ||= Client.new(node.endpoint, **@options))
9798
end
9899
end
99100

100101
protected
101102

102103
def reload_cluster!(endpoints = @endpoints)
103104
@endpoints.each do |endpoint|
104-
client = Client.new(endpoint)
105+
client = Client.new(endpoint, **@options)
105106

106107
shards = RangeMap.new
107108
endpoints = []

0 commit comments

Comments
 (0)