aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other.go
blob: daf9eca437347a32457907f419291ca4b8c6b99b (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build appengine plan9

package request

import (
	"strings"
)

func isErrConnectionReset(err error) bool {
	return strings.Contains(err.Error(), "connection reset")
}