Skip to content

Commit 9bef9d2

Browse files
committed
fix lint warnings
Signed-off-by: Rajat Jindal <[email protected]>
1 parent bb3e1ee commit 9bef9d2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/trigger-http/src/handler.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ impl HttpExecutor for HttpHandlerExecutor {
4949
set_http_origin_from_request(&mut store, engine.clone(), self, &req);
5050

5151
// set the client tls options for the current component_id.
52-
// The OutboundWasiHttpHandler in this file is only used
52+
// The OutboundWasiHttpHandler in this file is only used
5353
// when making http-request from a http-trigger component.
5454
// The outbound http requests from other triggers such as Redis
5555
// uses OutboundWasiHttpHandler defined in spin_core crate.
56-
store.as_mut().data_mut().as_mut().client_tls_opts = engine.get_client_tls_opts(component_id);
56+
store.as_mut().data_mut().as_mut().client_tls_opts =
57+
engine.get_client_tls_opts(component_id);
5758

5859
let resp = match ty {
5960
HandlerType::Spin => {

0 commit comments

Comments
 (0)