Skip to content

Commit e040802

Browse files
committed
fix: allow clippy too many arguments rather than reshape signatures, for now
1 parent 39ff3f9 commit e040802

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/runtime.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,7 @@ async fn worker_loop_streaming<
531531
}
532532

533533
#[cfg(feature = "multi_thread")]
534+
#[allow(clippy::too_many_arguments)]
534535
async fn worker_loop_streaming_sharded<
535536
const COUNT: usize,
536537
const DEPTH: usize,
@@ -640,6 +641,7 @@ async fn handle_task_streaming<const QUEUE: usize, const SEEN: usize>(
640641
}
641642

642643
#[cfg(feature = "multi_thread")]
644+
#[allow(clippy::too_many_arguments)]
643645
async fn handle_task_streaming_sharded<const QUEUE: usize, const SEEN: usize>(
644646
client: &Client,
645647
frontier: Arc<Frontier<QUEUE, SEEN>>,
@@ -761,6 +763,7 @@ async fn enqueue_discovered_links<const QUEUE: usize, const SEEN: usize>(
761763
}
762764

763765
#[cfg(feature = "multi_thread")]
766+
#[allow(clippy::too_many_arguments)]
764767
async fn route_discovered_links<const QUEUE: usize, const SEEN: usize>(
765768
router: &ShardRouter,
766769
frontier: Arc<Frontier<QUEUE, SEEN>>,

0 commit comments

Comments
 (0)