Skip to content

Commit

Permalink
Merge pull request #65 from FalkorDB/64-add-retry-to-the-sentinel-con…
Browse files Browse the repository at this point in the history
…nection

add retry object to the connection
  • Loading branch information
dudizimber authored Sep 22, 2024
2 parents 1544d89 + 495ddb6 commit fb56ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion falkordb/falkordb.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def __init__(

if Is_Sentinel(conn):
self.sentinel, self.service_name = Sentinel_Conn(conn, ssl)
conn = self.sentinel.master_for(self.service_name, ssl=ssl)
conn = self.sentinel.master_for(self.service_name, ssl=ssl, retry=retry)

if Is_Cluster(conn):
conn = Cluster_Conn(
Expand Down

0 comments on commit fb56ead

Please sign in to comment.