-3

I am getting a network error of the form

http: proxy error: read tcp [...]->[...]: i/o timeout

And want to locate specifically the source of the read tcp error in the Go source code. Could anyone help me with that?

Harald Nordgren
  • 11,693
  • 6
  • 41
  • 65
  • 2
    Possibly a lot of places. Possibly nowhere (it could be from the underlying OS lib). Why do you need to find this? If your issue is that you're encountering the error, that issue is probably easier to find help with. – Adrian Dec 27 '18 at 19:27
  • @ThunderCat Can you post you comment as an answer? Seems like the right one. – Harald Nordgren Dec 27 '18 at 20:38
  • @Adrian Posted a more fleshed-out question here: https://stackoverflow.com/questions/53950606/getting-sporadic-http-proxy-error-read-tcp-i-o-timeout-on-heroku – Harald Nordgren Dec 27 '18 at 20:39

1 Answers1

4

The read tcp [...]->[...]: i/o timeout error is generated here. The underlying timeout error is defined here.

Charlie Tumahai
  • 113,709
  • 12
  • 249
  • 242