Skip to content

Commit b19c942

Browse files
committed
Bump max retries
1 parent 534cb0c commit b19c942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mem3_helper.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ def construct_service_record():
2323
@backoff.on_exception(
2424
backoff.expo,
2525
dns.resolver.NXDOMAIN,
26-
max_tries=10
26+
max_tries=15
2727
)
2828
@backoff.on_exception(
2929
backoff.expo,
3030
PeerDiscoveryException,
31-
max_tries=10
31+
max_tries=15
3232
)
3333
def discover_peers(service_record):
3434
expected_peers_count = os.getenv('COUCHDB_CLUSTER_SIZE')

0 commit comments

Comments
 (0)