willemdj / erlsom

XML parser for Erlang
GNU Lesser General Public License v3.0
264 stars 103 forks source link

pass verify_none to httpc:request #93

Closed mikpe closed 6 months ago

mikpe commented 6 months ago

The ssl changes in OTP-26 mean that any code that doesn't specify verify_none will default to verify_peer, and unless certs are passed in you get hard errors. This also affects httpc:request. Update uses of the latter to explicitly pass in verify_none.

willemdj commented 6 months ago

It is not clear to me what the default was before OTP-26. Was it verify_none? In other words: will this change keep the behavior as it was before release 26, or will it change it?

mikpe commented 6 months ago

The default prior to OTP-26 was verify_none, so this change preserves existing behaviour.