-
Hello, If it now already retries in the service/server level, do i still receive an 429 response in the request? If i don't is it still possible to get one in case that the retries already was performed by the sevice/server but it still fails? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
you set a max retries count and time wrt rate limiting. When that's exhausted, the exception will be thrown in the normal way.
there is no service/server factoe Other retries are your business |
Beta Was this translation helpful? Give feedback.
default limits are documented. something like 9 tries and 30s. There can always be an exception. so if you config max 3 and 15s, you can get thrown an exn if attempt 4 fails or 15s has expired
if you dont get an exception, the request got servied