diff --git a/server/comms/server.go b/server/comms/server.go index 0a40c2cc9e..e43a19b265 100644 --- a/server/comms/server.go +++ b/server/comms/server.go @@ -416,7 +416,11 @@ func (s *Server) Run(ctx context.Context) { wsConn, err := ws.NewConnection(w, r, pongWait) if err != nil { - log.Errorf("ws connection error: %v", err) + if errors.Is(err, ws.ErrHandshake) { + log.Debug(err) + } else { + log.Errorf("ws connection error: %v", err) + } return }