Skip to content

Commit

Permalink
unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
sagojez committed Aug 12, 2024
1 parent 5f9bc78 commit e1b79d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algebra/trigger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl Handler<Trigger> for TriggerActor {
#[tracing::instrument(
name = "TriggerActor handle", skip(self, msg), fields(request_id = self.request_id.map(|id| id.to_string()).as_deref())
)]
fn handle(&mut self, msg: Trigger, _ctx: &mut Self::Context) -> Self::Result {
fn handle(&mut self, msg: Trigger, _: &mut Self::Context) -> Self::Result {
let oauths = self.oauths.clone();
let secrets_client = self.secrets_client.clone();
let connections = self.connections.clone();
Expand Down

0 comments on commit e1b79d4

Please sign in to comment.