File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ http = { workspace = true }
33
33
http-body = { workspace = true }
34
34
http-body-util = { workspace = true }
35
35
hyper = { workspace = true }
36
- lambda_runtime = { version = " 0.9" , path = " ../lambda-runtime" }
36
+ lambda_runtime = { version = " 0.9.2 " , path = " ../lambda-runtime" }
37
37
mime = " 0.3"
38
38
percent-encoding = " 2.2"
39
39
pin-project-lite = { workspace = true }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lambda_runtime"
3
- version = " 0.9.1 "
3
+ version = " 0.9.2 "
4
4
authors = [
5
5
" David Calavera <dcalaver@amazon.com>" ,
6
6
" Harold Sun <sunhua@amazon.com>" ,
Original file line number Diff line number Diff line change @@ -126,7 +126,10 @@ impl Runtime {
126
126
// Group the handling in one future and instrument it with the span
127
127
async {
128
128
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
+ ) ;
130
133
131
134
#[ cfg( debug_assertions) ]
132
135
if parts. status . is_server_error ( ) {
You can’t perform that action at this time.
0 commit comments