mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add a nolint directive for the use of net.Error.Temporary when reading from conn
This commit is contained in:
parent
4f85f45f0a
commit
42bfe5aa70
1 changed files with 4 additions and 0 deletions
|
@ -344,6 +344,10 @@ func (h *packetHandlerMap) listen() {
|
|||
defer close(h.listening)
|
||||
for {
|
||||
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() {
|
||||
h.logger.Debugf("Temporary error reading from conn: %w", err)
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue