mirror of
https://github.com/juanfont/headscale.git
synced 2025-01-11 18:43:45 +00:00
Use request context to close when client disconnects
This commit is contained in:
parent
5e9004c407
commit
d404ba102d
2
poll.go
2
poll.go
@ -279,7 +279,7 @@ func (h *Headscale) PollNetMapStream(
|
|||||||
keepAliveChan chan []byte,
|
keepAliveChan chan []byte,
|
||||||
updateChan chan struct{},
|
updateChan chan struct{},
|
||||||
) {
|
) {
|
||||||
ctx := context.WithValue(context.Background(), machineNameContextKey, machine.Hostname)
|
ctx := context.WithValue(r.Context(), machineNameContextKey, machine.Hostname)
|
||||||
|
|
||||||
ctx, cancel := context.WithCancel(ctx)
|
ctx, cancel := context.WithCancel(ctx)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user