We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5d3ea commit 610e845Copy full SHA for 610e845
tailnet/conn.go
@@ -266,7 +266,7 @@ func (c *Conn) SetNodeCallback(callback func(node *Node)) {
266
c.lastDERPLatency = ni.DERPLatency
267
node := makeNode()
268
c.lastMutex.Unlock()
269
- callback(node)
+ go callback(node)
270
})
271
c.wireguardEngine.SetStatusCallback(func(s *wgengine.Status, err error) {
272
if err != nil {
@@ -280,7 +280,7 @@ func (c *Conn) SetNodeCallback(callback func(node *Node)) {
280
c.lastEndpoints = endpoints
281
282
283
284
285
}
286
0 commit comments