-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backport connection poisoning to hyper 1.x client (#3795)
## Motivation and Context <!--- Why is this change required? What problem does it solve? --> <!--- If it fixes an open issue, please link to the issue here --> #1925 ## Description Backports connection poisoning that hyper 0.14 HTTP client has to the hyper 1.x client. See also: * upstream support: hyperium/hyper-util#121 ## Testing <!--- Please describe in detail how you tested your changes --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [X] For changes to the smithy-rs codegen or runtime crates, I have created a changelog entry Markdown file in the `.changelog` directory, specifying "client," "server," or both in the `applies_to` key. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
- Loading branch information
Showing
4 changed files
with
33 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
applies_to: | ||
- client | ||
authors: | ||
- aajtodd | ||
references: | ||
- smithy-rs#1925 | ||
breaking: false | ||
new_feature: false | ||
bug_fix: false | ||
--- | ||
Backport connection poisoning to hyper 1.x support |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aws-smithy-experimental" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
authors = ["AWS Rust SDK Team <[email protected]>"] | ||
description = "Experiments for the smithy-rs ecosystem" | ||
edition = "2021" | ||
|
@@ -15,10 +15,11 @@ crypto-aws-lc-fips = ["rustls/fips"] | |
[dependencies] | ||
aws-smithy-types = { path = "../aws-smithy-types", features = ["http-body-1-x"] } | ||
aws-smithy-runtime-api = { features = ["client", "http-1x"], path = "../aws-smithy-runtime-api" } | ||
aws-smithy-runtime = { features = ["client"], path = "../aws-smithy-runtime" } | ||
aws-smithy-async = { path = "../aws-smithy-async" } | ||
hyper = { version = "1", features = ["client", "http1", "http2"] } | ||
pin-project-lite = "0.2.13" | ||
hyper-util = "0.1.3" | ||
hyper-util = "0.1.7" | ||
http = "1" | ||
tokio = "1" | ||
hyper-rustls = { version = "0.27", features = ["http2", "http1", "native-tokio", "tls12"], default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters