mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-10-05 07:10:01 +08:00
script
This commit is contained in:
parent
a937a94e43
commit
337d01008b
@ -244,25 +244,6 @@ func (s *groupServer) GetJoinedGroupList(ctx context.Context, req *pbGroup.GetJo
|
|||||||
log.NewError(req.OperationID, utils.GetSelfFuncName(), err.Error(), v)
|
log.NewError(req.OperationID, utils.GetSelfFuncName(), err.Error(), v)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
//if num > 0 && owner != nil && err2 == nil && group != nil && err == nil {
|
|
||||||
// if group.Status == constant.GroupStatusDismissed {
|
|
||||||
// log.NewError(req.OperationID, "constant.GroupStatusDismissed ", group)
|
|
||||||
// continue
|
|
||||||
// }
|
|
||||||
// utils.CopyStructFields(&groupNode, group)
|
|
||||||
// groupNode.CreateTime = uint32(group.CreateTime.Unix())
|
|
||||||
// groupNode.NotificationUpdateTime = uint32(group.NotificationUpdateTime.Unix())
|
|
||||||
// if group.NotificationUpdateTime.Unix() < 0 {
|
|
||||||
// groupNode.NotificationUpdateTime = 0
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// groupNode.MemberCount = uint32(num)
|
|
||||||
// groupNode.OwnerUserID = owner.UserID
|
|
||||||
// resp.GroupList = append(resp.GroupList, &groupNode)
|
|
||||||
//} else {
|
|
||||||
// log.NewError(req.OperationID, "check nil ", num, owner, err, group, err2)
|
|
||||||
// continue
|
|
||||||
//}
|
|
||||||
if group.Status == constant.GroupStatusDismissed {
|
if group.Status == constant.GroupStatusDismissed {
|
||||||
log.NewError(req.OperationID, "constant.GroupStatusDismissed ", group)
|
log.NewError(req.OperationID, "constant.GroupStatusDismissed ", group)
|
||||||
continue
|
continue
|
||||||
|
@ -300,7 +300,7 @@ func (s *organizationServer) CreateOrganizationUser(ctx context.Context, req *rp
|
|||||||
log.Debug(req.OperationID, "CreateOrganizationUser ", organizationUser)
|
log.Debug(req.OperationID, "CreateOrganizationUser ", organizationUser)
|
||||||
resp := &rpc.CreateOrganizationUserResp{}
|
resp := &rpc.CreateOrganizationUserResp{}
|
||||||
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), " rpc return ", *resp)
|
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), " rpc return ", *resp)
|
||||||
chat.OrganizationNotificationToAll(req.OpUserID, req.OperationID)
|
//chat.OrganizationNotificationToAll(req.OpUserID, req.OperationID)
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ for i in ${service_port_name[*]}; do
|
|||||||
list=$(cat $config_path | grep -w ${i} | awk -F '[:]' '{print $NF}')
|
list=$(cat $config_path | grep -w ${i} | awk -F '[:]' '{print $NF}')
|
||||||
list_to_string $list
|
list_to_string $list
|
||||||
for j in ${ports_array}; do
|
for j in ${ports_array}; do
|
||||||
port=$(netstat -netulp | grep ./open_im | awk '{print $4}' | grep -w ${j} | awk -F '[:]' '{print $NF}')
|
port=$(ss -tunlp| grep open_im | awk '{print $5}' | grep -w ${j} | awk -F '[:]' '{print $NF}')
|
||||||
if [[ ${port} -ne ${j} ]]; then
|
if [[ ${port} -ne ${j} ]]; then
|
||||||
echo -e ${YELLOW_PREFIX}${i}${COLOR_SUFFIX}${RED_PREFIX}" service does not start normally,not initiated port is "${COLOR_SUFFIX}${YELLOW_PREFIX}${j}${COLOR_SUFFIX}
|
echo -e ${YELLOW_PREFIX}${i}${COLOR_SUFFIX}${RED_PREFIX}" service does not start normally,not initiated port is "${COLOR_SUFFIX}${YELLOW_PREFIX}${j}${COLOR_SUFFIX}
|
||||||
echo -e ${RED_PREFIX}"please check ../logs/openIM.log "${COLOR_SUFFIX}
|
echo -e ${RED_PREFIX}"please check ../logs/openIM.log "${COLOR_SUFFIX}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user