File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 88async def main () -> None :
99 apify_client = ApifyClientAsync (
1010 token = TOKEN ,
11- max_retries = 8 ,
11+ max_retries = 4 ,
1212 min_delay_between_retries = timedelta (milliseconds = 500 ),
13- timeout_medium = timedelta (seconds = 360 ),
13+ timeout_short = timedelta (seconds = 5 ),
14+ timeout_medium = timedelta (seconds = 30 ),
15+ timeout_long = timedelta (seconds = 360 ),
16+ timeout_max = timedelta (seconds = 360 ),
1417 )
Original file line number Diff line number Diff line change 88def main () -> None :
99 apify_client = ApifyClient (
1010 token = TOKEN ,
11- max_retries = 8 ,
11+ max_retries = 4 ,
1212 min_delay_between_retries = timedelta (milliseconds = 500 ),
13- timeout_medium = timedelta (seconds = 360 ),
13+ timeout_short = timedelta (seconds = 5 ),
14+ timeout_medium = timedelta (seconds = 30 ),
15+ timeout_long = timedelta (seconds = 360 ),
16+ timeout_max = timedelta (seconds = 360 ),
1417 )
You can’t perform that action at this time.
0 commit comments