Skip to content

Commit

Permalink
more retries by default in concurrent fetcher
Browse files Browse the repository at this point in the history
  • Loading branch information
tianyuan129 authored Aug 31, 2024
1 parent 276aa7e commit 176008f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ndn_python_repo/utils/concurrent_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def concurrent_fetcher(app: NDNApp, name: NonStrictName, start_id: int,
:return: Yield ``(FormalName, MetaInfo, Content, RawPacket)`` tuples in order.
"""
name_conv = IdNamingConv.SEGMENT
max_retries = 3
max_retries = 15
if 'name_conv' in kwargs:
name_conv = kwargs['name_conv']
if 'max_retries' in kwargs:
Expand Down

0 comments on commit 176008f

Please sign in to comment.