Merge pull request #7755 from zmstone/0425-fix-telemetry-https-warning-message
fix(telemetry): add verify_none ssl option
This commit is contained in:
commit
01925dae77
|
@ -355,7 +355,7 @@ report_telemetry(State0 = #state{url = URL}) ->
|
|||
State.
|
||||
|
||||
httpc_request(Method, URL, Headers, Body) ->
|
||||
HTTPOptions = [{timeout, 10_000}],
|
||||
HTTPOptions = [{timeout, 10_000}, {ssl, [{verify, verify_none}]}],
|
||||
Options = [],
|
||||
httpc:request(Method, {URL, Headers, "application/json", Body}, HTTPOptions, Options).
|
||||
|
||||
|
|
Loading…
Reference in New Issue