-
Notifications
You must be signed in to change notification settings - Fork 60
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
api: remove ssl #379
api: remove ssl #379
Conversation
9f8ea39
to
de0a46c
Compare
In the commit message: s/[1] https://github.com/tarantool/go-tlsdialer/1. https://github.com/tarantool/go-tlsdialer/ The commit message should be < 72 characters. Now it is too short at the first glance. |
64ca4ce
to
350de61
Compare
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.
Thank you for the patch!
350de61
to
edc1a3e
Compare
ba00d4e
to
ae6cfc6
Compare
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.
Sorry, I had forgot to press "Finish your review"
Please, |
That was already changed this morning. |
ae6cfc6
to
00e72eb
Compare
CHANGELOG.md
Outdated
@@ -125,6 +124,7 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release. | |||
- Code() method from the Request interface (#158) | |||
- `Schema` field from the `Connection` struct (#7) | |||
- `OkCode` and `PushCode` constants (#237) | |||
- Move SSL support to a separate module `go-tlsdialer` (#301) |
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.
It was simply
Removed
- IPROTO constants
for moving IPROTO constants to a separate package. I think here we too should simply
Removed
- SSL support (Disable SSL by default #301)
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.
Ok, updated.
`OpenSslDialer` and all of its helper functions and tests were rellocated to the `go-tlsdialer` [1] package (and renamed to `OpenSSLDialer`). So now we can safely remove all the copy-pasted code from `go-tarantool`. This way, in order to use SSL, user should import the `go-tlsdialer` package and call functions from there. 1. https://github.com/tarantool/go-tlsdialer/ Part of #301
00e72eb
to
dc85b64
Compare
After all Tarantool-EE specific logic was moved to the `go-tlsdialer` [1], Tarantool-EE jobs could be removed from ci workflows. This commit removes ci jobs for Tarantool-EE. 1. https://github.com/tarantool/go-tlsdialer/ Closes #301
dc85b64
to
7fae859
Compare
OpenSslDialer
and all of its helper functions and tests were rellocated to thego-tlsdialer
[1] package (and renamed toOpenSSLDialer
). So now we can safely remove all the copy-pasted code fromgo-tarantool
.This way, in order to use SSL, user should import the
go-tlsdialer
package and call functions from there.After all Tarantool-EE specific logic was moved to the
go-tlsdialer
, Tarantool-EE jobs could be removed from ci workflows. In a separate commit, Tarantool-EE jobs are removed from the ci workflows.Related issues:
Closes #301