fix:更新测试环境

This commit is contained in:
Hiven 2023-08-11 15:28:03 +08:00
parent 0edcf1e65f
commit 94e15c1c19
2 changed files with 10 additions and 5 deletions

View File

@ -16,5 +16,5 @@ AWS:
Token:
BLMService:
LogoCombine:
#Url: "http://192.168.1.7:45678/LogoCombine"
Url: "http://18.119.109.254:8999/LogoCombine"
Url: "http://192.168.1.7:8999/LogoCombine"
#Url: "http://18.119.109.254:8999/LogoCombine"

View File

@ -2,6 +2,7 @@ package logic
import (
"encoding/json"
"errors"
"fusenapi/model/gmodel"
"fusenapi/utils/auth"
"fusenapi/utils/basic"
@ -17,6 +18,7 @@ import (
"fusenapi/server/resource/internal/types"
"github.com/zeromicro/go-zero/core/logx"
"gorm.io/gorm"
)
type LogoCombineLogic struct {
@ -75,8 +77,10 @@ func (l *LogoCombineLogic) LogoCombine(req *types.LogoCombineReq, userinfo *auth
})
} else {
if err != nil {
logx.Error(err)
return resp.SetStatus(basic.CodeDbSqlErr, "LogoCombine error")
if !errors.Is(err, gorm.ErrRecordNotFound) {
logx.Error(err)
return resp.SetStatus(basic.CodeDbSqlErr, "LogoCombine error")
}
}
}
@ -134,8 +138,9 @@ func (l *LogoCombineLogic) LogoCombine(req *types.LogoCombineReq, userinfo *auth
logx.Error(err)
return resp.SetStatus(basic.CodeFileLogoCombineErr, "service read fail")
}
ress := string(b)
if string(b) == "Internal Server Error" {
if ress == "Internal Server Error" {
return resp.SetStatus(basic.CodeFileLogoCombineErr, "service read fail")
}