AskError is returned when a key is being migrated and the client should ask another node.
| 64 | |
| 65 | // AskError is returned when a key is being migrated and the client should ask another node. |
| 66 | type AskError struct { |
| 67 | msg string |
| 68 | addr string |
| 69 | } |
| 70 | |
| 71 | func (e *AskError) Error() string { |
| 72 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected