-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Correct the url for the memory stats in the router test #15482
Correct the url for the memory stats in the router test #15482
Conversation
We were missing the debug=1 argument on the memory stats, so were getting them in a binary format. With the flag added we pass tests properly. Fixes openshift#15356
@openshift/networking PTAL |
So why did this start failing? |
It looks like this happened with a change to WriteHeapProfile to make it call WriteTo with a 0 for the debug arg (https://golang.org/pkg/runtime/pprof/#Profile.WriteTo). I think it is this commit: golang/go@cbab65f |
/retest |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: knobunc, smarterclayton Associated issue requirement bypassed by: smarterclayton The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue (batch tested with PRs 15486, 15482) |
YAY! openshift-ansible merges again, thanks. |
We were missing the debug=1 argument on the memory stats, so were getting them in a binary format. With the flag added we pass tests properly.
Fixes #15356