Skip to content

Instantly share code, notes, and snippets.

@ae6rt
Created September 21, 2014 20:08
Show Gist options
  • Save ae6rt/38b23e9ed90f752851f6 to your computer and use it in GitHub Desktop.
Save ae6rt/38b23e9ed90f752851f6 to your computer and use it in GitHub Desktop.
Examine specific network errors in Go for more failure information
if err, ok := err.(net.Error); ok {
if err.Timeout() {
responseCode = http.StatusGatewayTimeout
fmt.Printf("Timeout\n")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment