|
@@ -60,14 +60,14 @@ func (re *ReportUpdateTask) Execute(taskDetail *base.TaskDetail) error {
|
|
|
for i := 0; i < len(htReportList); i++ {
|
|
|
key := redis.GenerateReportRefreshKey("HT", htReportList[i].Id, int64(htReportList[i].PublishTime))
|
|
|
if rd().SetIfNotExist(key, "processed", 3600) {
|
|
|
- logger.Info("同步eta报告 ID :%d,修改时间:%v", htReportList[i].Id, int64(htReportList[i].PublishTime))
|
|
|
+ logger.Info("同步HT报告 ID :%d,修改时间:%v", htReportList[i].Id, int64(htReportList[i].PublishTime))
|
|
|
filterReportList = append(filterReportList, htReportList[i])
|
|
|
} else {
|
|
|
- logger.Info("过滤ETA重复的消息 ID :%d,修改时间:%v", htReportList[i].Id, int64(htReportList[i].PublishTime))
|
|
|
+ logger.Info("过滤HT重复的消息 ID :%d,修改时间:%v", htReportList[i].Id, int64(htReportList[i].PublishTime))
|
|
|
}
|
|
|
}
|
|
|
if err != nil {
|
|
|
- logger.Error("获取ETA研报列表失败:%v", err)
|
|
|
+ logger.Error("获取HT研报列表失败:%v", err)
|
|
|
}
|
|
|
if len(filterReportList) > 0 {
|
|
|
for i := 0; i < len(filterReportList); i++ {
|
|
@@ -83,7 +83,7 @@ func (re *ReportUpdateTask) Execute(taskDetail *base.TaskDetail) error {
|
|
|
var PermissionName string
|
|
|
err = getPermissionNameById(plate.Id, &PermissionName)
|
|
|
if err != nil {
|
|
|
- logger.Error("获取ETA研报列表失败:%v", err)
|
|
|
+ logger.Error("获取HT研报列表失败:%v", err)
|
|
|
filterReportList[i].PermissionName = ""
|
|
|
} else {
|
|
|
filterReportList[i].PermissionName = PermissionName
|
|
@@ -93,13 +93,13 @@ func (re *ReportUpdateTask) Execute(taskDetail *base.TaskDetail) error {
|
|
|
var stop bool
|
|
|
stop, err = report.SyncHTReportList(filterReportList)
|
|
|
if err != nil {
|
|
|
- logger.Error("同步ETA研报列表失败:%v", err)
|
|
|
+ logger.Error("同步HT研报列表失败:%v", err)
|
|
|
}
|
|
|
if stop {
|
|
|
logger.Info(contants.TaskFormat, "同步HT研报库结束")
|
|
|
}
|
|
|
} else {
|
|
|
- logger.Info(contants.TaskFormat, "同步ETA研报库结束")
|
|
|
+ logger.Info(contants.TaskFormat, "同步HT研报库结束")
|
|
|
}
|
|
|
}()
|
|
|
wg.Wait()
|