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.
| 259 | // too long to connect to the desired host. This level of |
| 260 | // detail can generally be ignored. |
| 261 | type ConnectTimeoutError struct { |
| 262 | Addr net.Addr |
| 263 | } |
| 264 | |
| 265 | func (cte *ConnectTimeoutError) Error() string { |
| 266 | return "memcache: connect timeout to " + cte.Addr.String() |
nothing calls this directly
no outgoing calls
no test coverage detected