Skip to content

Commit

Permalink
Merge pull request #69 from FalkorDB/68-add-retry_on_error-to-the-sen…
Browse files Browse the repository at this point in the history
…tinel

added retry_on_error to the conn object returned by the Is_sentinel f…
  • Loading branch information
dudizimber authored Oct 13, 2024
2 parents c6136bc + fde2062 commit d0671f6
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, retry=retry)
conn = self.sentinel.master_for(self.service_name, ssl=ssl)

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

0 comments on commit d0671f6

Please sign in to comment.