Add two too_many_arguments exceptions

This commit is contained in:
Simon Fondrie-Teitler
2025-06-27 14:54:20 -04:00
committed by Markus Unterwaditzer
parent 5f45ae31d8
commit 4ad79707bb
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -122,6 +122,7 @@ async fn init_qmdl_store(config: &config::Config) -> Result<RecordingStore, Rayh
// Start a thread that'll track when user hits ctrl+c. When that happens,
// trigger various cleanup tasks, including sending signals to other threads to
// shutdown
#[allow(clippy::too_many_arguments)]
fn run_shutdown_thread(
task_tracker: &TaskTracker,
diag_device_sender: Sender<DiagDeviceCtrlMessage>,
+1
View File
@@ -29,6 +29,7 @@ pub enum DiagDeviceCtrlMessage {
Exit,
}
#[allow(clippy::too_many_arguments)]
pub fn run_diag_read_thread(
task_tracker: &TaskTracker,
mut dev: DiagDevice,