Skip to content

Commit

Permalink
object_store: fix typo in with_connect_timeout_disabled that actually…
Browse files Browse the repository at this point in the history
… disabled non-connect timeouts (#6563)
  • Loading branch information
adriangb authored Oct 15, 2024
1 parent 522bd01 commit 23cf6d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object_store/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ impl ClientOptions {
///
/// See [`Self::with_connect_timeout`]
pub fn with_connect_timeout_disabled(mut self) -> Self {
self.timeout = None;
self.connect_timeout = None;
self
}

Expand Down

0 comments on commit 23cf6d8

Please sign in to comment.