hesampakdaman commented on issue #5396:
URL: https://github.com/apache/arrow-rs/issues/5396#issuecomment-2132702717
@tustvold I'll gladly take a stab at this. Am I correct in understanding
that we would like to limit the number of requests in `send_retry`?
```diff
modified object_store/src/client/retry.rs
@@ -368,7 +368,7 @@ impl RetryExt for reqwest::RequestBuilder {
}
}
- fn send_retry(self, config: &RetryConfig) -> BoxFuture<'static,
Result<Response>> {
+ fn send_retry(self, config: &RetryConfig, semaphore:
Option<Arc<Semaphore>>) -> BoxFuture<'static, Result<Response>> {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]