1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-03-29 21:57:16 +02:00

Update errors.go (#2009)

This commit is contained in:
songzhibin97 2022-05-20 18:51:09 +08:00 committed by GitHub
parent ef6fb480c6
commit 1dfb77bfe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,9 @@ func FromError(err error) *Error {
return se
}
gs, ok := status.FromError(err)
if ok {
if !ok {
return New(UnknownCode, UnknownReason, err.Error())
}
ret := New(
httpstatus.FromGRPCCode(gs.Code()),
UnknownReason,
@ -145,6 +147,4 @@ func FromError(err error) *Error {
}
}
return ret
}
return New(UnknownCode, UnknownReason, err.Error())
}