We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9966d commit e95778dCopy full SHA for e95778d
aws/logs_monitoring/lambda_function.py
@@ -52,7 +52,7 @@
52
53
with requests.Session() as s:
54
retries = requests.adapters.Retry(
55
- total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504]
+ total=5, backoff_factor=1, status_forcelist=[429, 500, 502, 503, 504]
56
)
57
58
s.mount("http://", requests.adapters.HTTPAdapter(max_retries=retries))
0 commit comments