feat(tunnel): require explicit target schemes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-05-15 13:16:49 -04:00
parent 9edea27148
commit 8dfb14f1e7
7 changed files with 78 additions and 19 deletions

View File

@@ -70,6 +70,9 @@ func (s *WebServer) handleStream(w http.ResponseWriter, r *http.Request) {
ch := s.store.Subscribe()
done := r.Context().Done()
_, _ = fmt.Fprint(w, ": connected\n\n")
flusher.Flush()
for {
select {
case record, ok := <-ch: