clippy
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
asonix 2024-02-03 18:30:52 -06:00
parent 880dfc20ee
commit c176e4c686
6 changed files with 4 additions and 14 deletions

View file

@ -93,7 +93,6 @@ pub(crate) async fn generate<S: Store + 'static>(
}
}
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(skip(state, hash))]
async fn process<S: Store + 'static>(
state: &State<S>,
@ -167,7 +166,6 @@ async fn process<S: Store + 'static>(
Ok((details, bytes)) as Result<(Details, Bytes), Error>
}
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(skip_all)]
async fn input_identifier<S>(
state: &State<S>,
@ -220,7 +218,7 @@ where
};
let reader = ffmpeg::thumbnail(
&state,
state,
identifier,
original_details
.video_format()

View file

@ -160,7 +160,6 @@ where
Ok((input_type, identifier, details, hash_state))
}
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(skip(state, stream))]
pub(crate) async fn ingest<S>(
state: &State<S>,

View file

@ -773,7 +773,6 @@ async fn not_found_hash(repo: &ArcRepo) -> Result<Option<(Alias, Hash)>, Error>
}
/// Process files
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(name = "Serving processed image", skip(state, process_map))]
async fn process<S: Store + 'static>(
range: Option<web::Header<Range>>,
@ -899,7 +898,6 @@ async fn process<S: Store + 'static>(
))
}
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(name = "Serving processed image headers", skip(state))]
async fn process_head<S: Store + 'static>(
range: Option<web::Header<Range>>,
@ -1042,7 +1040,6 @@ async fn details<S: Store + 'static>(
}
/// Serve files based on alias query
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(name = "Serving file query", skip(state))]
async fn serve_query<S: Store + 'static>(
range: Option<web::Header<Range>>,

View file

@ -17,7 +17,6 @@ use crate::{
store::Store,
};
#[allow(clippy::too_many_arguments)]
pub(super) async fn migrate_store<S1, S2>(
from: S1,
to: State<S2>,
@ -75,7 +74,6 @@ struct MigrateState<S1, S2> {
started_at: Instant,
}
#[allow(clippy::too_many_arguments)]
async fn do_migrate_store<S1, S2>(
from: S1,
to: State<S2>,
@ -326,7 +324,6 @@ where
Ok(())
}
#[allow(clippy::too_many_arguments)]
async fn migrate_file<S1, S2>(
from: &S1,
to: &State<S2>,

View file

@ -330,7 +330,6 @@ async fn process_image_jobs<S, F>(
}
}
#[allow(clippy::too_many_arguments)]
async fn image_job_loop<S, F>(
state: &State<S>,
process_map: &ProcessMap,

View file

@ -14,10 +14,10 @@ use crate::{
store::Store,
};
pub(super) fn perform<'a, S>(
state: &'a State<S>,
pub(super) fn perform<S>(
state: &State<S>,
job: serde_json::Value,
) -> LocalBoxFuture<'a, Result<(), Error>>
) -> LocalBoxFuture<'_, Result<(), Error>>
where
S: Store + 'static,
{