Skip to content

Commit

Permalink
Fix v1beta1 HTTPHeaderName alias (kubernetes-sigs#3127)
Browse files Browse the repository at this point in the history
Currently, the v1beta1 HTTPHeaderName aliases directly to v1.HeaderName
instead of v1.HTTPHeaderName (which then aliases to v1.HeaderName).
  • Loading branch information
spencerhance authored and BobyMCbobs committed Jul 10, 2024
1 parent a4c800f commit 27f86ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/v1beta1/httproute_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ type HeaderMatchType = v1.HeaderMatchType
//
// * "/invalid" - "/" is an invalid character
// +k8s:deepcopy-gen=false
type HTTPHeaderName = v1.HeaderName
type HTTPHeaderName = v1.HTTPHeaderName

// HTTPHeaderMatch describes how to select a HTTP route by matching HTTP request
// headers.
Expand Down

0 comments on commit 27f86ab

Please sign in to comment.