We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3979f1d commit 3426e04Copy full SHA for 3426e04
internal/pool/conn_check_dummy.go
@@ -10,11 +10,11 @@ import (
10
// errUnexpectedRead is placeholder error variable for non-unix build constraints
11
var errUnexpectedRead = errors.New("unexpected read from socket")
12
13
-func connCheck(conn net.Conn) error {
+func connCheck(_ net.Conn) error {
14
return nil
15
}
16
17
// since we can't check for data on the socket, we just assume there is some
18
-func maybeHasData(conn net.Conn) bool {
+func maybeHasData(_ net.Conn) bool {
19
return true
20
0 commit comments