Skip to content

Commit

Permalink
stop using the deprecated net.Error.Temporary when reading from the p…
Browse files Browse the repository at this point in the history
…acket conn
  • Loading branch information
marten-seemann committed Apr 2, 2022
1 parent 0c6b3df commit 0a87124
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packet_handler_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,10 +344,6 @@ func (h *packetHandlerMap) listen() {
defer close(h.listening)
for {
p, err := h.conn.ReadPacket()
if nerr, ok := err.(net.Error); ok && nerr.Temporary() {
h.logger.Debugf("Temporary error reading from conn: %w", err)
continue
}
if err != nil {
h.close(err)
return
Expand Down

0 comments on commit 0a87124

Please sign in to comment.