Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaurer committed Nov 7, 2023
1 parent b821074 commit fb8d68c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/mysql/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ func (l *Listener) handle(conn net.Conn, connectionID uint32, acceptTime time.Ti
var connWithTimeouts netutil.ConnWithTimeouts
if l.connReadTimeout != 0 || l.connWriteTimeout != 0 {
connWithTimeouts = netutil.NewConnWithTimeouts(conn, l.connReadTimeout, l.connWriteTimeout)
conn = connWithTimeouts
conn = &connWithTimeouts
}
c := newServerConn(conn, l)
c.ConnectionID = connectionID
Expand Down

0 comments on commit fb8d68c

Please sign in to comment.