You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please consider to add --skip-tls-verification option
You could do it with conditional against transport var (and add TLSClientConfig: &tls.Config{InsecureSkipVerify: true},):
transport := &http.Transport{
// Disable HTTP/2, this is required due to a number of edge cases where http negotiates H2, but something goes
// wrong when actually using it. Downgrading to H1 when this issue is hit is not yet supported so we use the
// following to disable H2 support:
// > Programs that must disable HTTP/2 can do so by setting Transport.TLSNextProto ... to a non-nil, empty map.
// See issue #49
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
TLSNextProto: make(map[string]func(authority string, c *tls.Conn) http.RoundTripper),
}
The text was updated successfully, but these errors were encountered:
@xadcoh@jgazeau Apologies, had my head of this project for a while. jgazeau's PR #113 should cover what's being asked for here. This is now merged on master.
Hi It's not a bug it's a feature request.
Could you please consider to add
--skip-tls-verification
optionYou could do it with conditional against transport var (and add
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
):The text was updated successfully, but these errors were encountered: