mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #3290 from paochiang/fix_dedup_subscribers
This commit is contained in:
commit
b9518e06f5
|
@ -263,6 +263,9 @@ func (fs *FilerServer) addClient(clientType string, clientAddress string, client
|
||||||
if clientId != 0 {
|
if clientId != 0 {
|
||||||
fs.knownListenersLock.Lock()
|
fs.knownListenersLock.Lock()
|
||||||
_, alreadyKnown = fs.knownListeners[clientId]
|
_, alreadyKnown = fs.knownListeners[clientId]
|
||||||
|
if !alreadyKnown {
|
||||||
|
fs.knownListeners[clientId] = struct{}{}
|
||||||
|
}
|
||||||
fs.knownListenersLock.Unlock()
|
fs.knownListenersLock.Unlock()
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue