Skip to content

Commit a4aa23e

Browse files
authored
Release runtime version 0.9.2 (#820)
Signed-off-by: David Calavera <david.calavera@gmail.com>
1 parent 73736fd commit a4aa23e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

lambda-http/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ http = { workspace = true }
3333
http-body = { workspace = true }
3434
http-body-util = { workspace = true }
3535
hyper = { workspace = true }
36-
lambda_runtime = { version = "0.9", path = "../lambda-runtime" }
36+
lambda_runtime = { version = "0.9.2", path = "../lambda-runtime" }
3737
mime = "0.3"
3838
percent-encoding = "2.2"
3939
pin-project-lite = { workspace = true }

lambda-runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = [
55
"David Calavera <dcalaver@amazon.com>",
66
"Harold Sun <sunhua@amazon.com>",

lambda-runtime/src/lib.rs

+4-1
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)