|
|
|
@ -36,8 +36,9 @@ func UserRegister(c *gin.Context) {
|
|
|
|
|
client := rpc.NewAuthClient(etcdConn)
|
|
|
|
|
reply, err := client.UserRegister(context.Background(), req)
|
|
|
|
|
if err != nil || reply.CommonResp.ErrCode != 0 {
|
|
|
|
|
log.NewError(req.OperationID, "UserRegister failed ", err, reply.CommonResp.ErrCode)
|
|
|
|
|
|
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": reply.CommonResp.ErrMsg})
|
|
|
|
|
log.NewError(req.OperationID, "UserRegister failed ", err, reply.CommonResp.ErrCode)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|