File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ struct ActionInput<T> {
4848 parents : HashMap < Ustr , serde_json:: Value > ,
4949}
5050
51+ #[ allow( clippy:: too_many_arguments) ]
5152async fn handle_start_step_run (
5253 action_function_task_join_set : & mut tokio:: task:: JoinSet < crate :: InternalResult < ( ) > > ,
5354 abort_handles : & mut HashMap < String , tokio:: task:: AbortHandle > ,
@@ -160,6 +161,7 @@ async fn handle_cancel_step_run(
160161 Ok ( ( ) )
161162}
162163
164+ #[ allow( clippy:: too_many_arguments) ]
163165pub ( crate ) async fn run (
164166 action_function_task_join_set : & mut tokio:: task:: JoinSet < crate :: InternalResult < ( ) > > ,
165167 mut dispatcher : DispatcherClient <
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ struct TokenClaims {
9393 grpc_broadcast_address : String ,
9494}
9595
96- fn construct_endpoint_url < ' a > (
96+ fn construct_endpoint_url (
9797 tls_strategy : ClientTlStrategy ,
98- host_port_in_environment : Option < & ' a str > ,
98+ host_port_in_environment : Option < & str > ,
9999 token : & secrecy:: SecretString ,
100100) -> crate :: InternalResult < String > {
101101 use secrecy:: ExposeSecret ;
You can’t perform that action at this time.
0 commit comments