]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other.go
Transfer of provider code
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / aws / aws-sdk-go / aws / request / connection_reset_error_other.go
1 // +build appengine plan9
2
3 package request
4
5 import (
6 "strings"
7 )
8
9 func isErrConnectionReset(err error) bool {
10 return strings.Contains(err.Error(), "connection reset")
11 }