tustvold commented on code in PR #4040:
URL: https://github.com/apache/arrow-rs/pull/4040#discussion_r1161309382
##########
object_store/src/client/retry.rs:
##########
@@ -121,22 +166,37 @@ impl Default for RetryConfig {
}
}
+/// Crate-private client configuration
+///
+/// Specifically this is the config passed to [`RetryExt::send_retry`]
+///
+/// This is unlike the public [`ClientOptions`](crate::ClientOptions) which
contains just
+/// the properties used to construct [`Client`](reqwest::Client)
+#[derive(Debug, Clone, Default)]
+pub struct ClientConfig {
Review Comment:
The separation of ClientOptions and ClientConfig is perhaps a little
derived, but ClientConfig is a crate-private implementation detail and so I
think this is fine.
--
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]