Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2021-04-29 14:31:24 +03:00
parent 9ac268b2f0
commit 2bb81ff232

View File

@ -35,5 +35,10 @@ func microError(err error) error {
} }
// fallback // fallback
return errors.InternalServerError("go.micro.client", s.Message()) return &errors.Error{
Id: "go.micro.client",
Code: int32(s.Code()),
Detail: s.Message(),
Status: s.Code().String(),
}
} }