local error: tls: no renegotiation
SantoshSah opened this issue · 2 comments
SantoshSah commented
c4milo commented
hmm, the TLS implementation in Go has TLS renegotiation disabled by default. To enable it, one has to set the Renegotiation
field as such:
config := &tls.Config{
Renegotiation: tls.RenegotiateFreelyAsClient,
}
SantoshSah commented
Thanks. I had installed using homebrew and default installation was not working. When i compiled binary with above modification, it worked.