del conversation bug fix

This commit is contained in:
Gordon 2022-08-05 15:16:43 +08:00
parent 1dfe8f866a
commit ba5edabb2c
2 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,10 @@ type groupServer struct {
etcdAddr []string etcdAddr []string
} }
func (s *groupServer) GetGroupAbstractInfo(c context.Context, req *pbGroup.GetGroupAbstractInfoReq) (*pbGroup.GetGroupAbstractInfoResp, error) {
panic("implement me")
}
func NewGroupServer(port int) *groupServer { func NewGroupServer(port int) *groupServer {
log.NewPrivateLog(constant.LogFileName) log.NewPrivateLog(constant.LogFileName)
return &groupServer{ return &groupServer{

View File

@ -202,6 +202,7 @@ func (d *DataBases) GetMessageListBySeq(userID string, seqList []uint32, operati
} }
return seqMsg, failedSeqList, errResult return seqMsg, failedSeqList, errResult
} }
func (d *DataBases) SetMessageToCache(msgList []*pbChat.MsgDataToMQ, uid string, operationID string) error { func (d *DataBases) SetMessageToCache(msgList []*pbChat.MsgDataToMQ, uid string, operationID string) error {
ctx := context.Background() ctx := context.Background()
pipe := d.RDB.Pipeline() pipe := d.RDB.Pipeline()