-
Notifications
You must be signed in to change notification settings - Fork 390
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
Golang 1.8 - Use ClientTrace.TLSHandshakeStart and TLSHandshakeDone #114
Conversation
Thanks for sending this. TBH I'm not going to look at this until 1.8 is out at the end of the year, and even then might ask you for a solution to keep backwards compat with go 1.7. |
Also, please raise an issue before slinging code. Thank you. |
Off-topic question @davecheney: what's your recommended approach to using version-specific golang APIs? Should it be avoided and support for previous golang versions must be provided or is it ok to use the most recent version when building and distributing open source software? |
Generally you have to break out the affected function and then implement it On Sun, Oct 23, 2016 at 9:11 PM, Mateusz Gajewski [email protected]
|
As for the question about should you use the latest version of Go -- yes, On Sun, Oct 23, 2016 at 9:27 PM, Dave Cheney [email protected] wrote:
|
Related to #113 |
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.
Now that Go 1.8 is out, this would be nice to have merged.
The .travis needs to be updated to use Go 1.8 so the CI don't fail. Then I guess @davecheney should be able to merge this. |
I’d rather a PR that updated the Travis setting to not test against 1.8. It’s not supported by the Go team, so we shouldn’t either
… On 28 Apr 2018, at 05:34, Olivier Poitrey ***@***.***> wrote:
The .travis needs to be updated to use Go 1.8 so the CI don't fail. Then I guess @davecheney should be able to merge this.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Use ClientTrace.TLSHandshakeStart/HandshakeDone from incoming go 1.8: golang/go@abdd73c
This PR probably should be blocked until 1.8 is released