add a nolint directive for the use of net.Error.Temporary when reading from conn

This commit is contained in:
Marten Seemann 2022-04-02 20:35:43 +01:00
parent 4f85f45f0a
commit 42bfe5aa70

View file

@ -344,6 +344,10 @@ func (h *packetHandlerMap) listen() {
defer close(h.listening) defer close(h.listening)
for { for {
p, err := h.conn.ReadPacket() p, err := h.conn.ReadPacket()
//nolint:staticcheck // SA1019 ignore this!
// TODO: This code is used to ignore wsa errors on Windows.
// Since net.Error.Temporary is deprecated as of Go 1.18, we should find a better solution.
// See https://github.com/lucas-clemente/quic-go/issues/1737 for details.
if nerr, ok := err.(net.Error); ok && nerr.Temporary() { if nerr, ok := err.(net.Error); ok && nerr.Temporary() {
h.logger.Debugf("Temporary error reading from conn: %w", err) h.logger.Debugf("Temporary error reading from conn: %w", err)
continue continue