优化代码

This commit is contained in:
GoEdgeLab
2022-12-31 17:31:17 +08:00
parent 1e54aefafd
commit f12f594b85
4 changed files with 8 additions and 8 deletions

View File

@@ -49,8 +49,8 @@ func (this *UpdateCNAMEPopupAction) RunPost(params struct {
}
serverResp, err := this.RPC().ServerRPC().FindEnabledServer(this.AdminContext(), &pb.FindEnabledServerRequest{
ServerId: params.ServerId,
IgnoreSSLCertData: true,
ServerId: params.ServerId,
IgnoreSSLCerts: true,
})
if err != nil {
this.ErrorPage(err)

View File

@@ -43,8 +43,8 @@ func (this *IndexAction) RunGet(params struct {
// 当前服务信息
serverResp, err := this.RPC().ServerRPC().FindEnabledServer(this.AdminContext(), &pb.FindEnabledServerRequest{
ServerId: params.ServerId,
IgnoreSSLCertData: true,
ServerId: params.ServerId,
IgnoreSSLCerts: true,
})
if err != nil {
this.ErrorPage(err)

View File

@@ -58,8 +58,8 @@ func (this *ServerHelper) createLeftMenu(action *actions.ActionObject) {
}
serverResp, err := rpcClient.ServerRPC().FindEnabledServer(rpcClient.Context(action.Context.GetInt64("adminId")), &pb.FindEnabledServerRequest{
ServerId: serverId,
IgnoreSSLCertData: true,
ServerId: serverId,
IgnoreSSLCerts: true,
})
if err != nil {
logs.Error(err)

View File

@@ -11,8 +11,8 @@ import (
// FindServer 查找服务信息
func FindServer(p *actionutils.ParentAction, serverId int64) (*pb.Server, *serverconfigs.ServerConfig, bool) {
serverResp, err := p.RPC().ServerRPC().FindEnabledServer(p.AdminContext(), &pb.FindEnabledServerRequest{
ServerId: serverId,
IgnoreSSLCertData: true,
ServerId: serverId,
IgnoreSSLCerts: true,
})
if err != nil {
p.ErrorPage(err)