Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <xxchan22f@gmail.com>
  • Loading branch information
xxchan committed Jun 20, 2024
1 parent 019e03c commit cc89f14
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 28 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ async_fn_in_trait = "allow"
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(madsim)',
'cfg(coverage)',
'cfg(dashboard_built)'
'cfg(dashboard_built)',
] }

[workspace.lints.clippy]
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/build-other.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ set -euo pipefail

source ci/scripts/common.sh


echo "--- Build Rust UDF"
cd e2e_test/udf/wasm
rustup target add wasm32-wasi
cargo build --release
cd ../../..

Expand Down
2 changes: 1 addition & 1 deletion lints/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# See `README.md` before bumping the version.

[toolchain]
channel = "nightly-2024-03-21"
channel = "nightly-2024-06-08"
components = ["llvm-tools-preview", "rustc-dev"]
1 change: 1 addition & 0 deletions src/object_store/src/object/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,7 @@ pub async fn build_remote_object_store(
)
}
}
#[expect(unexpected_cfgs)]
#[cfg(feature = "hdfs-backend")]
hdfs if hdfs.starts_with("hdfs://") => {
let hdfs = hdfs.strip_prefix("hdfs://").unwrap();
Expand Down
1 change: 1 addition & 0 deletions src/object_store/src/object/opendal_engine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
pub mod opendal_object_store;
pub use opendal_object_store::*;

#[expect(unexpected_cfgs)]
#[cfg(feature = "hdfs-backend")]
pub mod hdfs;
pub mod webhdfs;
Expand Down

0 comments on commit cc89f14

Please sign in to comment.