log change

This commit is contained in:
Gordon 2022-05-21 14:19:45 +08:00
parent f1e2704407
commit 7d1843f485

View File

@ -129,9 +129,15 @@ func (och *OnlineHistoryConsumerHandler) Run(channelID int) {
singleMsgSuccessCountMutex.Lock() singleMsgSuccessCountMutex.Lock()
singleMsgSuccessCount += uint64(len(storageMsgList)) singleMsgSuccessCount += uint64(len(storageMsgList))
singleMsgSuccessCountMutex.Unlock() singleMsgSuccessCountMutex.Unlock()
for _, v := range pushMsgList { //go func(push,storage []*pbMsg.MsgDataToMQ) {
sendMessageToPush(v, msgChannelValue.userID) // for _, v := range storage {
} // sendMessageToPush(v, msgChannelValue.userID)
// }
// for _, x := range utils.DifferenceString() {
// sendMessageToPush(v, msgChannelValue.userID)
// }
//
//}(pushMsgList,storageMsgList)
} }
} }