Skip to content

Commit 34902d5

Browse files
committed
fix
Signed-off-by: xxchan <xxchan22f@gmail.com>
1 parent 9fd4984 commit 34902d5

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ async_fn_in_trait = "allow"
238238
unexpected_cfgs = { level = "warn", check-cfg = [
239239
'cfg(madsim)',
240240
'cfg(coverage)',
241-
'cfg(dashboard_built)'
241+
'cfg(dashboard_built)',
242242
] }
243243

244244
[workspace.lints.clippy]

ci/scripts/build-other.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ set -euo pipefail
55

66
source ci/scripts/common.sh
77

8-
98
echo "--- Build Rust UDF"
109
cd e2e_test/udf/wasm
10+
rustup target add wasm32-wasi
1111
cargo build --release
1212
cd ../../..
1313

lints/rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# See `README.md` before bumping the version.
22

33
[toolchain]
4-
channel = "nightly-2024-03-21"
4+
channel = "nightly-2024-06-08"
55
components = ["llvm-tools-preview", "rustc-dev"]

src/connector/src/sink/iceberg/prometheus/monitored_partition_writer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ pub struct MonitoredFanoutPartitionedWriterBuilder<B: IcebergWriterBuilder> {
2727
}
2828

2929
impl<B: IcebergWriterBuilder> MonitoredFanoutPartitionedWriterBuilder<B> {
30-
#[expect(dead_code)]
3130
pub fn new(
3231
inner: FanoutPartitionedWriterBuilder<B>,
3332
partition_num: LabelGuardedIntGauge<2>,

src/connector/src/sink/iceberg/prometheus/monitored_write_writer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ pub struct MonitoredWriteWriterBuilder<B: IcebergWriterBuilder> {
2828

2929
impl<B: IcebergWriterBuilder> MonitoredWriteWriterBuilder<B> {
3030
/// Create writer context.
31-
#[expect(dead_code)]
3231
pub fn new(
3332
inner: B,
3433
write_qps: LabelGuardedIntCounter<2>,

src/object_store/src/object/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#![expect(
16+
unexpected_cfgs,
17+
reason = "feature(hdfs-backend) is banned https://github.com/risingwavelabs/risingwave/pull/7875"
18+
)]
19+
1520
pub mod sim;
1621
use std::ops::{Range, RangeBounds};
1722
use std::sync::Arc;

src/storage/hummock_sdk/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
#![feature(is_sorted)]
2323
#![feature(let_chains)]
2424
#![feature(btree_cursors)]
25-
#![feature(lazy_cell)]
2625

2726
mod key_cmp;
2827
use std::cmp::Ordering;

0 commit comments

Comments
 (0)