-
Notifications
You must be signed in to change notification settings - Fork 220
Fix H2 URI path matching in ALB health check layer #4288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
12bd774
0543dab
aef9c71
fc73951
1a5d7d5
e26efed
7052e9f
95e4742
d713193
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
applies_to: [server] | ||
authors: [drganjoo] | ||
references: [] | ||
breaking: false | ||
new_feature: false | ||
bug_fix: true | ||
--- | ||
Fixed URI path matching for H2 protocol in the ALB health check layer to ensure explicit path comparison. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aws-smithy-http-server" | ||
version = "0.65.5" | ||
version = "0.66.0" | ||
authors = ["Smithy Rust Server <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,7 +108,7 @@ where | |
} | ||
|
||
fn call(&mut self, req: Request<Body>) -> Self::Future { | ||
if req.uri() == self.layer.health_check_uri.as_ref() { | ||
if req.uri().path() == self.layer.health_check_uri.as_ref() { | ||
let clone = self.layer.health_check_handler.clone(); | ||
let service = std::mem::replace(&mut self.layer.health_check_handler, clone); | ||
let handler_future = service.oneshot(req); | ||
|
@@ -179,3 +179,32 @@ where | |
} | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use http::Uri; | ||
use tower::{service_fn, ServiceExt}; | ||
|
||
#[tokio::test] | ||
async fn health_check_matches_path_with_scheme_and_authority() { | ||
|
||
let layer = AlbHealthCheckLayer::from_handler("/ping", |_req| async { StatusCode::OK }); | ||
|
||
let inner_service = service_fn(|_req| async { | ||
Ok::<_, std::convert::Infallible>( | ||
Response::builder() | ||
.status(StatusCode::IM_A_TEAPOT) | ||
.body(crate::body::empty()) | ||
.expect("infallible"), | ||
) | ||
}); | ||
|
||
let service = layer.layer(inner_service); | ||
|
||
let uri: Uri = "https://example.com/ping".parse().unwrap(); | ||
let request = Request::builder().uri(uri).body(Body::empty()).unwrap(); | ||
|
||
let response = service.oneshot(request).await.unwrap(); | ||
assert_eq!(response.status(), StatusCode::OK); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did you make a new breaking version? isn't this going to cause problems? This change seems backwards compatible?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're absolutely right - this is a backwards compatible change. I bumped to 0.66 as a precautionary measure because I wanted to avoid any potential versioning issues during integration testing. At the time, this was planned to be included in the next code generator release, so the version bump seemed appropriate. However, since this now needs to be released independently of the code generator, you're correct that 0.65.6 would be more suitable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well and it seems like making a new breaking change release of the libraries when we don't need it only causes lots of pain?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We typically never release intermediate crate versions of
aws-smithy-http-server
independently of the code generator, so bumping the major version, combined with a code-generator release, is usually the safer approach - it eliminates any risk of breaking users due to potential CI tooling issues. When releases are tied to the code generator, a major version bump has minimal downstream impact compared to accidentally introducing breaking changes.However, since this particular release now needs to happen independently of the code generator, I've changed it to only bump the minor version.