mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-02 18:34:29 +08:00
feat: fix openim tools error code
This commit is contained in:
parent
13033604e7
commit
65d09726f5
@ -67,15 +67,15 @@ func run(port int, proPort int) error {
|
|||||||
// Determine whether zk is passed according to whether it is a clustered deployment
|
// Determine whether zk is passed according to whether it is a clustered deployment
|
||||||
client, err = kdisc.NewDiscoveryRegister(config.Config.Envs.Discovery)
|
client, err = kdisc.NewDiscoveryRegister(config.Config.Envs.Discovery)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errs.Wrap(err, "register discovery err")
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = client.CreateRpcRootNodes(config.Config.GetServiceNames()); err != nil {
|
if err = client.CreateRpcRootNodes(config.Config.GetServiceNames()); err != nil {
|
||||||
return errs.Wrap(err, "create rpc root nodes error")
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = client.RegisterConf2Registry(constant.OpenIMCommonConfigKey, config.Config.EncodeConfig()); err != nil {
|
if err = client.RegisterConf2Registry(constant.OpenIMCommonConfigKey, config.Config.EncodeConfig()); err != nil {
|
||||||
return errs.Wrap(err, "register config to registry error")
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|||||||
@ -169,7 +169,7 @@ func (och *OnlineHistoryRedisConsumerHandler) Run(channelID int) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取消息/通知 存储的消息列表, 不存储并且推送的消息列表,.
|
// Get messages/notifications stored message list, not stored and pushed message list.
|
||||||
func (och *OnlineHistoryRedisConsumerHandler) getPushStorageMsgList(
|
func (och *OnlineHistoryRedisConsumerHandler) getPushStorageMsgList(
|
||||||
totalMsgs []*ContextMsg,
|
totalMsgs []*ContextMsg,
|
||||||
) (storageMsgList, notStorageMsgList, storageNotificatoinList, notStorageNotificationList, modifyMsgList []*sdkws.MsgData) {
|
) (storageMsgList, notStorageMsgList, storageNotificatoinList, notStorageNotificationList, modifyMsgList []*sdkws.MsgData) {
|
||||||
@ -190,7 +190,7 @@ func (och *OnlineHistoryRedisConsumerHandler) getPushStorageMsgList(
|
|||||||
// clone msg from notificationMsg
|
// clone msg from notificationMsg
|
||||||
if options.IsSendMsg() {
|
if options.IsSendMsg() {
|
||||||
msg := proto.Clone(v.message).(*sdkws.MsgData)
|
msg := proto.Clone(v.message).(*sdkws.MsgData)
|
||||||
// 消息
|
// message
|
||||||
if v.message.Options != nil {
|
if v.message.Options != nil {
|
||||||
msg.Options = msgprocessor.NewMsgOptions()
|
msg.Options = msgprocessor.NewMsgOptions()
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user