tidy code

This commit is contained in:
wenxu12345 2021-12-28 18:01:40 +08:00
parent ec95f0a7af
commit 188a90f97d

View File

@ -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
}