Skip to content

Commit

Permalink
Release runtime version 0.9.2 (#820)
Browse files Browse the repository at this point in the history
Signed-off-by: David Calavera <[email protected]>
  • Loading branch information
calavera authored Feb 14, 2024
1 parent 73736fd commit a4aa23e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lambda-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
lambda_runtime = { version = "0.9", path = "../lambda-runtime" }
lambda_runtime = { version = "0.9.2", path = "../lambda-runtime" }
mime = "0.3"
percent-encoding = "2.2"
pin-project-lite = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_runtime"
version = "0.9.1"
version = "0.9.2"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
Expand Down
5 changes: 4 additions & 1 deletion lambda-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ impl Runtime {
// Group the handling in one future and instrument it with the span
async {
let body = body.collect().await?.to_bytes();
trace!(body = std::str::from_utf8(&body)?, "raw JSON event received from Lambda");
trace!(
body = std::str::from_utf8(&body)?,
"raw JSON event received from Lambda"
);

#[cfg(debug_assertions)]
if parts.status.is_server_error() {
Expand Down

0 comments on commit a4aa23e

Please sign in to comment.