1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

Remove forgotten lock

This commit is contained in:
Kristoffer Dalby 2021-08-06 20:02:47 +01:00
parent db4f49901e
commit 5bc5c5dc1b
No known key found for this signature in database
GPG Key ID: 09F62DC067465735

View File

@ -50,13 +50,11 @@ func (h *Headscale) EnableNodeRoute(namespace string, nodeName string, routeStr
// Definetely not accessible from the CLI tool.
// We need RPC to the server - or some kind of 'needsUpdate' field in the DB
peers, _ := h.getPeers(*m)
h.pollMu.Lock()
for _, p := range *peers {
if pUp, ok := h.clientsPolling.Load(uint64(p.ID)); ok {
pUp.(chan []byte) <- []byte{}
}
}
h.pollMu.Unlock()
return &rIP, nil
}
}