Fix data races

This commit is contained in:
Philipp Heckel 2021-12-07 16:03:01 -05:00
parent c9f1b02251
commit 802ef17cb4
2 changed files with 8 additions and 1 deletions

View file

@ -386,8 +386,11 @@ func (s *Server) handleSubscribe(w http.ResponseWriter, r *http.Request, v *visi
if err != nil {
return err
}
var wlock sync.Mutex
poll := r.URL.Query().Has("poll")
sub := func(msg *message) error {
wlock.Lock()
defer wlock.Unlock()
m, err := encoder(msg)
if err != nil {
return err