Flush buffered data on polling
This commit is contained in:
parent
39b58f7d4c
commit
657fb208d6
1 changed files with 4 additions and 0 deletions
4
poll.go
4
poll.go
|
@ -323,6 +323,7 @@ func (h *Headscale) PollNetMapStream(
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
w.(http.Flusher).Flush()
|
||||||
|
|
||||||
log.Trace().
|
log.Trace().
|
||||||
Str("handler", "PollNetMapStream").
|
Str("handler", "PollNetMapStream").
|
||||||
|
@ -390,6 +391,7 @@ func (h *Headscale) PollNetMapStream(
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
w.(http.Flusher).Flush()
|
||||||
|
|
||||||
log.Trace().
|
log.Trace().
|
||||||
Str("handler", "PollNetMapStream").
|
Str("handler", "PollNetMapStream").
|
||||||
|
@ -478,6 +480,8 @@ func (h *Headscale) PollNetMapStream(
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
w.(http.Flusher).Flush()
|
||||||
|
|
||||||
log.Trace().
|
log.Trace().
|
||||||
Str("handler", "PollNetMapStream").
|
Str("handler", "PollNetMapStream").
|
||||||
Str("machine", machine.Hostname).
|
Str("machine", machine.Hostname).
|
||||||
|
|
Loading…
Add table
Reference in a new issue