-
Notifications
You must be signed in to change notification settings - Fork 3k
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
inets: start ssl and dependencies by default #7588
inets: start ssl and dependencies by default #7588
Conversation
CT Test Results 2 files 21 suites 13m 1s ⏱️ For more details on these failures, see this check. Results for commit 9ad7184. ♻️ This comment has been updated with latest results. To speed up review, make sure that you have read Contributing to Erlang/OTP and that all checks pass. See the TESTING and DEVELOPMENT HowTo guides for details about how to run test locally. Artifacts// Erlang/OTP Github Action Bot |
cb617dc
to
9626b97
Compare
9626b97
to
692532b
Compare
2f2a80a
to
35dfe32
Compare
35dfe32
to
aaad5aa
Compare
inets will start ssl by default together with its dependencies. the main reason for this change is that https is almost standard nowadays and inets:start/0/1/2/3 is a utility function that can benefit from not having to manually pass new options to allow redirects from http to https
aaad5aa
to
bc97027
Compare
Closing PR and re-opening due to internal branch naming scheme |
With this PR, the
inets
app starts thessl
and its dependencies by default.This is a good standard nowadays, preventing redirects from
http
tohttps
to break, so that it is easier to start and one does not need to startssl
andcrypto
manually.Closes #7580