Skip to content

Commit

Permalink
recall
Browse files Browse the repository at this point in the history
  • Loading branch information
kaki-admin committed Dec 7, 2024
1 parent 2d67838 commit 7347b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prerank-stages/recall/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func loadRecallResult(language string, startTimeStamp int64, feedMap map[string]
common.Logger.Info("load saved recall data ", zap.Int("file size:", len(ptotoList.Entries)), zap.Int("check size:", len(rankEntries)))

sort.SliceStable(rankEntries, func(i, j int) bool {
return rankEntries[i].RecallPoint < rankEntries[j].RecallPoint
return rankEntries[i].RecallPoint >= rankEntries[j].RecallPoint
})
return rankEntries, existRankEntryMap, nil

Expand Down

0 comments on commit 7347b27

Please sign in to comment.