From 9ee887fce2f87f7a79d0b94640cf1d341a254319 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期五, 17 五月 2024 02:55:14 +0800
Subject: [PATCH] 添加webapi, 优化模块启动
---
client/system.go | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/client/system.go b/client/system.go
index 03b42ae..b2e540b 100644
--- a/client/system.go
+++ b/client/system.go
@@ -3,11 +3,11 @@
import (
"encoding/json"
"fmt"
- "gat1400Exchange/util"
"io/ioutil"
"gat1400Exchange/config"
"gat1400Exchange/pkg/logger"
+ "gat1400Exchange/util"
"gat1400Exchange/vo"
dac "github.com/xinsnake/go-http-digest-auth-client"
@@ -89,8 +89,9 @@
},
}
+ url := fmt.Sprintf("%s://%s:%s%s", config.ClientConf.Proto, config.ClientConf.ServerAddr, config.ClientConf.ServerPort, KeepaliveUrI)
b, _ := json.Marshal(body)
- rsp, err := util.HttpPost(KeepaliveUrI, headers, b)
+ rsp, err := util.HttpPost(url, headers, b)
if err != nil {
logger.Warn("Keepalive request failed, %s", err.Error())
return vo.StatusOtherError
--
Gitblit v1.8.0