我需要发送有关gRPC错误的丰富的结构化错误详细信息。
我认为可能是这样的
fv = BadRequest.FieldViolation(field="login", description="Name is not unique")
bad_request = BadRequest(field_violations=[fv])
context.abort(StatusCode.INVALID_ARGUMENT, bad_request.SerializeToString())
但这是错误的,并在摘要错误文本中发送字节。
我使用grpcio == 1.17.1