status: remove Error method accidentally added to *Status (#3561)

This commit is contained in:
Doug Fawley
2020-04-23 08:42:39 -07:00
committed by GitHub
parent 18b6aa7728
commit 8f94cb18c0

View File

@ -100,11 +100,6 @@ func (s *Status) Err() error {
return (*Error)(s.Proto())
}
func (s *Status) Error() string {
p := s.Proto()
return fmt.Sprintf("rpc error: code = %s desc = %s", codes.Code(p.GetCode()), p.GetMessage())
}
// WithDetails returns a new status with the provided details messages appended to the status.
// If any errors are encountered, it returns nil and the first error encountered.
func (s *Status) WithDetails(details ...proto.Message) (*Status, error) {