MCPcopy Create free account
hub / github.com/bradfitz/gomemcache / ConnectTimeoutError

Struct ConnectTimeoutError

memcache/memcache.go:261–263  ·  view source on GitHub ↗

ConnectTimeoutError is the error type used when it takes too long to connect to the desired host. This level of detail can generally be ignored.

Source from the content-addressed store, hash-verified

259// too long to connect to the desired host. This level of
260// detail can generally be ignored.
261type ConnectTimeoutError struct {
262 Addr net.Addr
263}
264
265func (cte *ConnectTimeoutError) Error() string {
266 return "memcache: connect timeout to " + cte.Addr.String()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected