Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pageserver): allow unused_imports in download.rs on macOS (#8733)
## Problem On macOS, clippy fails with the following error: ``` error: unused import: `crate::virtual_file::owned_buffers_io::io_buf_ext::IoBufExt` --> pageserver/src/tenant/remote_timeline_client/download.rs:26:5 | 26 | use crate::virtual_file::owned_buffers_io::io_buf_ext::IoBufExt; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]` ``` Introduced in #8717 ## Summary of changes - allow `unused_imports` for `crate::virtual_file::owned_buffers_io::io_buf_ext::IoBufExt` on macOS in download.rs
- Loading branch information
a9c28be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2248 tests run: 2169 passed, 0 failed, 79 skipped (full report)
Code coverage* (full report)
functions
:32.4% (7217 of 22263 functions)
lines
:50.4% (58296 of 115720 lines)
* collected from Rust tests only
a9c28be at 2024-08-15T11:01:29.622Z :recycle: