MCPcopy
hub / github.com/redis/go-redis / Error

Method Error

internal/pool/pool_sticky.go:22–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

20var _ error = (*BadConnError)(nil)
21
22func (e BadConnError) Error() string {
23 s := "redis: Conn is in a bad state"
24 if e.wrapped != nil {
25 s += ": " + e.wrapped.Error()
26 }
27 return s
28}
29
30func (e BadConnError) Unwrap() error {
31 return e.wrapped

Calls

no outgoing calls