Skip to content

Commit 1ff4e21

Browse files
authored
Fix clippy in object_store crate (#6120)
* Fix clippy in object_store crate * clippy ignore
1 parent 3ebb033 commit 1ff4e21

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

object_store/src/client/mock_server.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ impl MockServer {
6060
let mut set = JoinSet::new();
6161

6262
loop {
63+
// https://github.com/apache/arrow-rs/issues/6122
64+
#[allow(clippy::incompatible_msrv)]
6365
let (stream, _) = tokio::select! {
6466
conn = listener.accept() => conn.unwrap(),
6567
_ = &mut rx => break,

object_store/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
//! # Highlights
4040
//!
4141
//! 1. A high-performance async API focused on providing a consistent interface
42-
//! mirroring that of object stores such as [S3]
42+
//! mirroring that of object stores such as [S3]
4343
//!
4444
//! 2. Production quality, leading this crate to be used in large
45-
//! scale production systems, such as [crates.io] and [InfluxDB IOx]
45+
//! scale production systems, such as [crates.io] and [InfluxDB IOx]
4646
//!
4747
//! 3. Support for advanced functionality, including atomic, conditional reads
48-
//! and writes, vectored IO, bulk deletion, and more...
48+
//! and writes, vectored IO, bulk deletion, and more...
4949
//!
5050
//! 4. Stable and predictable governance via the [Apache Arrow] project
5151
//!
@@ -98,7 +98,7 @@
9898
//! * Methods map directly to object store APIs, providing both efficiency and predictability
9999
//! * Abstracts away filesystem and operating system specific quirks, ensuring portability
100100
//! * Allows for functionality not native to filesystems, such as operation preconditions
101-
//! and atomic multipart uploads
101+
//! and atomic multipart uploads
102102
//!
103103
//! This crate does provide [`BufReader`] and [`BufWriter`] adapters
104104
//! which provide a more filesystem-like API for working with the

0 commit comments

Comments
 (0)