...
|
...
|
@@ -223,14 +223,14 @@ func CheckUuid(ctx *context.Context) (result bool) { |
|
|
)
|
|
|
result = true
|
|
|
defer func() {
|
|
|
if msg != nil {
|
|
|
result = false
|
|
|
if msg.Errno != 0 {
|
|
|
//result = false
|
|
|
ctx.Output.JSON(msg, false, false)
|
|
|
}
|
|
|
}()
|
|
|
uuid := ctx.Input.Header("x-mmm-uuid")
|
|
|
msg = protocol.NewReturnResponse(auth.CheckUuid(&protocol.CheckUuidRequest{Uuid: uuid}))
|
|
|
if msg != nil {
|
|
|
if msg.Errno != 0 {
|
|
|
log.Error(fmt.Sprintf("%v req:%v resp:%v", ctx.Request.RequestURI, uuid, common.AssertJson(msg)))
|
|
|
}
|
|
|
return
|
...
|
...
|
|