mirror of https://github.com/jackc/pgx.git
Use `time.Equal` instead of direct comparison
parent
2f1bba09c4
commit
e9d64ec29d
|
@ -44,7 +44,7 @@ func setSockMode(fd uintptr, mode sockMode) error {
|
|||
}
|
||||
|
||||
func (c *NetConn) isDeadlineSet(dl time.Time) bool {
|
||||
return !dl.IsZero() && dl != NonBlockingDeadline && dl != disableSetDeadlineDeadline
|
||||
return !dl.IsZero() && !dl.Equal(NonBlockingDeadline) && !dl.Equal(disableSetDeadlineDeadline)
|
||||
}
|
||||
|
||||
func (c *NetConn) isWriteDeadlineExpired() bool {
|
||||
|
|
Loading…
Reference in New Issue