You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lambda Web Adapter use Reqwest client to send http requests, which works great. And AWS Lambda Rust Runtime lambda-http crate added support for http_body::Body in v0.6.0, see PR#491.
By switching from Reqwest client to Hyper client, we can use that feature from lambda-http crate and remove convert_body() function here. Reduce the amount of code in the adapter.
The text was updated successfully, but these errors were encountered:
bnusunny
changed the title
switch from Reqwest client to Hyper client
Switch from Reqwest client to Hyper client
Jul 24, 2022
Lambda Web Adapter use Reqwest client to send http requests, which works great. And AWS Lambda Rust Runtime lambda-http crate added support for
http_body::Body
in v0.6.0, see PR#491.By switching from Reqwest client to Hyper client, we can use that feature from lambda-http crate and remove convert_body() function here. Reduce the amount of code in the adapter.
The text was updated successfully, but these errors were encountered: