Add etcd as a service discovery mechanism

pull/2318/head
skiffer-git 6 months ago
parent a298e929fb
commit 17a3012fa7

@ -211,12 +211,11 @@ func (ws *WsServer) sendUserOnlineInfoToOtherNode(ctx context.Context, client *C
// Online push user online message to other node
for _, v := range conns {
v := v // safe closure var
log.ZDebug(ctx, " sendUserOnlineInfoToOtherNode conn ", "target", v.Target())
if v.Target() == ws.disCov.GetSelfConnTarget() {
log.ZDebug(ctx, "Filter out this node", "node", v.Target())
continue
}
log.ZDebug(ctx, " sendUserOnlineInfoToOtherNode conn ", "target", v.Target(), v.GetState())
wg.Go(func() error {
msgClient := msggateway.NewMsgGatewayClient(v)

Loading…
Cancel
Save