SDK Should wrap HTTP 504 Gateway Timeout into RetryException
The DbxClientV2 request configuration supports automatic retries on transient errors, such as due to rate limiting.
Sometimes Dropbox API returns an error HTTP 504 Gateway Timeout. This will fail the request with BadResponseCodeException .
It would make sense to interpret HTTP 504 also as a transient error, and support optional automatic retries.
Thanks! I'll pass this along as a feature request, but I can't promise if or when it might be implemented.
The
DbxClientV2request configuration supports automatic retries on transient errors, such as due to rate limiting.Sometimes Dropbox API returns an error
HTTP 504 Gateway Timeout. This will fail the request withBadResponseCodeException.It would make sense to interpret
HTTP 504also as a transient error, and support optional automatic retries.