Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/graphql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ impl Query {
impl Mutation {
/// Generate scan file locations for the next scan
#[instrument(skip(self, ctx))]
async fn scan<'ctx>(
async fn scan(
&self,
ctx: &Context<'ctx>,
ctx: &Context<'_>,
instrument: String,
instrument_session: String,
sub: Option<Subdirectory>,
Expand Down Expand Up @@ -431,9 +431,9 @@ impl Mutation {

/// Add or modify the stored configuration for an instrument
#[instrument(skip(self, ctx))]
async fn configure<'ctx>(
async fn configure(
&self,
ctx: &Context<'ctx>,
ctx: &Context<'_>,
instrument: String,
config: ConfigurationUpdates,
) -> async_graphql::Result<CurrentConfiguration> {
Expand Down
Loading