-
Notifications
You must be signed in to change notification settings - Fork 19
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
Disable HTTP2 in webhooks #100
Disable HTTP2 in webhooks #100
Conversation
api/go.mod
Outdated
@@ -67,3 +67,6 @@ require ( | |||
// mschuppert: map to latest commit from release-4.13 tag | |||
// must consistent within modules and service operators | |||
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20230414143018-3367bc7e6ac7 //allow-merging | |||
|
|||
// Bump golang.org/x/net to avoid Rapid Reset CVE | |||
replace golang.org/x/net => golang.org/x/net v0.17.0 //allow-merging |
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.
L44 already sets x/net to 0.17 so I think we don't need the replace here
go.mod
Outdated
@@ -85,6 +85,9 @@ require ( | |||
sigs.k8s.io/yaml v1.3.0 // indirect | |||
) | |||
|
|||
// Bump golang.org/x/net to avoid Rapid Reset CVE | |||
replace golang.org/x/net => golang.org/x/net v0.17.0 //allow-merging |
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.
I think we don't need the explicit replace
Jira: OSPRH-468
c5bd1b9
to
767a6d7
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dprince, gibizer The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
482a242
into
openstack-k8s-operators:main
Also bumps golang.org/x/net to v0.17.0
Jira: OSPRH-468