robocar-base/vendor/github.com/testcontainers/testcontainers-go/wait/errors.go

10 lines
130 B
Go

// +build !windows
package wait
import "syscall"
func isConnRefusedErr(err error) bool {
return err == syscall.ECONNREFUSED
}