Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
include change that enables http2
  • Loading branch information
dprotaso committed Nov 30, 2025
commit c8afa39dd489a0b307240b746f64972ed1ffe760
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,4 @@ require (
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
)

replace knative.dev/pkg => github.com/dprotaso/pkg v0.0.0-20251130181829-779b85906b73
replace knative.dev/pkg => github.com/dprotaso/pkg v0.0.0-20251130213149-b24adc693a81
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBi
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker-credential-helpers v0.8.2 h1:bX3YxiGzFP5sOXWc3bTPEXdEaZSeVMrFgOr3T+zrFAo=
github.com/docker/docker-credential-helpers v0.8.2/go.mod h1:P3ci7E3lwkZg6XiHdRKft1KckHiO9a2rNtyFbZ/ry9M=
github.com/dprotaso/pkg v0.0.0-20251130181829-779b85906b73 h1:jMvzA7UOksGYqUOS67I4Wka/apQr9MbpmHyvulzuwDs=
github.com/dprotaso/pkg v0.0.0-20251130181829-779b85906b73/go.mod h1:Eh9hwzqriXEfHiXcCuOYExUj7WH8prk57V6qSeO6m94=
github.com/dprotaso/pkg v0.0.0-20251130213149-b24adc693a81 h1:7YeAKV/I+qI9cTjspBgyq2b9Weu2xiyBYXwqiIpy/Fc=
github.com/dprotaso/pkg v0.0.0-20251130213149-b24adc693a81/go.mod h1:Eh9hwzqriXEfHiXcCuOYExUj7WH8prk57V6qSeO6m94=
github.com/emicklei/go-restful/v3 v3.12.2 h1:DhwDP0vY3k8ZzE0RunuJy8GhNpPL6zqLkDf9B/a0/xU=
github.com/emicklei/go-restful/v3 v3.12.2/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
Expand Down
1 change: 1 addition & 0 deletions vendor/knative.dev/pkg/network/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
func NewServer(addr string, h http.Handler) *http.Server {
var protocols http.Protocols
protocols.SetHTTP1(true)
protocols.SetHTTP2(true)
protocols.SetUnencryptedHTTP2(true)

return &http.Server{
Expand Down
4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,7 @@ knative.dev/networking/pkg/http/proxy
knative.dev/networking/pkg/http/stats
knative.dev/networking/pkg/ingress
knative.dev/networking/pkg/prober
# knative.dev/pkg v0.0.0-20251126013532-e853b1d1d6bb => github.com/dprotaso/pkg v0.0.0-20251130181829-779b85906b73
# knative.dev/pkg v0.0.0-20251126013532-e853b1d1d6bb => github.com/dprotaso/pkg v0.0.0-20251130213149-b24adc693a81
## explicit; go 1.24.0
knative.dev/pkg/apiextensions/storageversion
knative.dev/pkg/apiextensions/storageversion/cmd/migrate
Expand Down Expand Up @@ -1669,4 +1669,4 @@ sigs.k8s.io/structured-merge-diff/v6/value
# sigs.k8s.io/yaml v1.6.0
## explicit; go 1.22
sigs.k8s.io/yaml
# knative.dev/pkg => github.com/dprotaso/pkg v0.0.0-20251130181829-779b85906b73
# knative.dev/pkg => github.com/dprotaso/pkg v0.0.0-20251130213149-b24adc693a81
Loading