Set the capacity of clientChan to 10000 (#5647)

This commit is contained in:
steve.wei
2024-06-05 20:41:46 +08:00
committed by GitHub
parent 1f2dc54647
commit d8da4bbaa7

View File

@@ -361,8 +361,7 @@ func (ms *MasterServer) addClient(filerGroup, clientType string, clientAddress p
// the KeepConnected loop is no longer listening on this channel but we're
// trying to send to it in SendHeartbeat and so we can't lock the
// clientChansLock to remove the channel and we're stuck writing to it
// 100 is probably overkill
messageChan = make(chan *master_pb.KeepConnectedResponse, 100)
messageChan = make(chan *master_pb.KeepConnectedResponse, 10000)
ms.clientChansLock.Lock()
ms.clientChans[clientName] = messageChan