Skip to content

Commit

Permalink
There is no need to add retry and retry_on_error
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadQadora committed Oct 13, 2024
1 parent 4faa66a commit fde2062
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, retry_on_error=retry_on_error)
conn = self.sentinel.master_for(self.service_name, ssl=ssl)

Check warning on line 126 in falkordb/falkordb.py

View check run for this annotation

Codecov / codecov/patch

falkordb/falkordb.py#L126

Added line #L126 was not covered by tests

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

0 comments on commit fde2062

Please sign in to comment.