This commit is contained in:
aozhiwei 2023-09-07 17:11:02 +08:00
parent c846553d7b
commit 8a947f6f60
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ type app struct {
} }
func (this *app) GetPkgName() string { func (this *app) GetPkgName() string {
return "imserver" return "hallserver"
} }
func (this *app) Run(initCb func(), unInitCb func()) { func (this *app) Run(initCb func(), unInitCb func()) {

View File

@ -106,7 +106,7 @@ func (this *playerMgr) reportServerState(masterIp string, masterPort int32) {
fmt.Sprintf("http://%s:%d/webapp/index.php?c=GS&a=report&", masterIp, masterPort), fmt.Sprintf("http://%s:%d/webapp/index.php?c=GS&a=report&", masterIp, masterPort),
params, params,
func(rsp f5.HttpCliResponse) { func(rsp f5.HttpCliResponse) {
f5.GetSysLog().Info(rsp.GetRawData()) //f5.GetSysLog().Info(rsp.GetRawData())
}) })
} }