Fix E.IsTimeout check

This commit is contained in:
世界 2023-04-08 12:17:59 +08:00
parent 121c0b14e4
commit cee74ef1f4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -1,11 +1,17 @@
package exceptions
import "net"
type TimeoutError interface {
Timeout() bool
}
func IsTimeout(err error) bool {
if timeoutErr, isTimeout := Cast[TimeoutError](err); isTimeout {
if netErr, isNetErr := err.(net.Error); isNetErr {
//goland:noinspection GoDeprecation
//nolint:staticcheck
return netErr.Temporary() && netErr.Timeout()
} else if timeoutErr, isTimeout := Cast[TimeoutError](err); isTimeout {
return timeoutErr.Timeout()
}
return false