File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ http = { workspace = true }
3333http-body = { workspace = true }
3434http-body-util = { workspace = true }
3535hyper = { workspace = true }
36- lambda_runtime = { version = " 0.9" , path = " ../lambda-runtime" }
36+ lambda_runtime = { version = " 0.9.2 " , path = " ../lambda-runtime" }
3737mime = " 0.3"
3838percent-encoding = " 2.2"
3939pin-project-lite = { workspace = true }
Original file line number Diff line number Diff line change 11[package ]
22name = " lambda_runtime"
3- version = " 0.9.1 "
3+ version = " 0.9.2 "
44authors = [
55 " David Calavera <[email protected] >" ,
66
Original file line number Diff line number Diff line change @@ -126,7 +126,10 @@ impl Runtime {
126126 // Group the handling in one future and instrument it with the span
127127 async {
128128 let body = body. collect ( ) . await ?. to_bytes ( ) ;
129- trace ! ( body = std:: str :: from_utf8( & body) ?, "raw JSON event received from Lambda" ) ;
129+ trace ! (
130+ body = std:: str :: from_utf8( & body) ?,
131+ "raw JSON event received from Lambda"
132+ ) ;
130133
131134 #[ cfg( debug_assertions) ]
132135 if parts. status . is_server_error ( ) {
You can’t perform that action at this time.
0 commit comments