Skip to content

Commit 9eec918

Browse files
committed
minor updates
1 parent b05dc7f commit 9eec918

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
run: cargo build --verbose
3131

3232
- name: Run tests
33-
run: cargo test --tests
33+
run: cargo test --tests --features exp_srb
3434

3535
- name: Check formatting
3636
run: cargo fmt --all -- --check
3737

3838
- name: Run Clippy
39-
run: cargo clippy --all --all-features --tests -- -D warnings
39+
run: cargo clippy --all --tests -- -D warnings
4040

4141
- name: Install nightly toolchain
4242
run: rustup toolchain install nightly

src/srb/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ impl<T> ShardedRingBuf<T> {
666666
/// async move {
667667
/// loop {
668668
/// for i in 0..rb_clone.get_num_of_shards() {
669-
/// rb_clone.notify_pin_shard(i)
669+
/// rb_clone.notify_pin_shard(i)
670670
/// }
671671
/// yield_now().await;
672672
/// }

0 commit comments

Comments
 (0)