File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -831,17 +831,18 @@ will automatically retry failed HTTP requests.
831
831
# ...
832
832
http_client :
833
833
# ...
834
- retry_failed :
835
- # retry_strategy: app.custom_strategy
836
- http_codes :
837
- 0 : ['GET', 'HEAD'] # retry network errors if request method is GET or HEAD
838
- 429 : true # retry all responses with 429 status code
839
- 500 : ['GET', 'HEAD']
840
- max_retries : 2
841
- delay : 1000
842
- multiplier : 3
843
- max_delay : 5000
844
- jitter : 0.3
834
+ default_options :
835
+ retry_failed :
836
+ # retry_strategy: app.custom_strategy
837
+ http_codes :
838
+ 0 : ['GET', 'HEAD'] # retry network errors if request method is GET or HEAD
839
+ 429 : true # retry all responses with 429 status code
840
+ 500 : ['GET', 'HEAD']
841
+ max_retries : 2
842
+ delay : 1000
843
+ multiplier : 3
844
+ max_delay : 5000
845
+ jitter : 0.3
845
846
846
847
scoped_clients :
847
848
my_api.client :
You can’t perform that action at this time.
0 commit comments