-
Notifications
You must be signed in to change notification settings - Fork 26
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
:ssl.ssl_accept is deprecated in OTP 21 #104
base: master
Are you sure you want to change the base?
Conversation
This looks to break the tests. Can you link me to that depreciation note for OTP21? and add a changelog fixed section for this |
http://erlang.org/doc/man/ssl.html#ssl_accept-1 "Deprecated in OTP 21, use handshake/[1,2] instead." The problem is that handshake is not present in OTP < 21, I'm not sure how this can be handled, should we wait until next release? |
hmm. if we want ace to work with 20 and 21 we will need a compile time check on otp version. which is a pain. it's ashame there is not a period of overlap for the two functions |
@arcz I've created a branch |
The problem of OTP 21 vs OTP 20 is going to be a non issue because I will support only OTP 21. we need to make this decision to use handle_continue. |
I still don't think handle_continue is a big enough feature to justify dropping OTP 20 for... |
agreed, but you get this warning just running ace on OTP21 and so this warning is actually preventing us from using warnings_as_errors: true in this project |
I think we can probably resolve this now if we upgrade the versions of Elixir and OTP that Ace supports |
No description provided.