Skip to content

Commit 7b4f217

Browse files
authored
feat: no longer verify HELLO error messages (#2515)
Signed-off-by: monkey92t <[email protected]>
1 parent 6edb152 commit 7b4f217

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

redis.go

+10-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"errors"
66
"fmt"
77
"net"
8-
"strings"
98
"sync/atomic"
109
"time"
1110

@@ -281,13 +280,18 @@ func (c *baseClient) initConn(ctx context.Context, cn *pool.Conn) error {
281280

282281
var auth bool
283282

284-
// For redis-server < 6.0 that does not support the Hello command,
285-
// we continue to provide services with RESP2.
283+
// for redis-server versions that do not support the HELLO command,
284+
// RESP2 will continue to be used.
286285
if err := conn.Hello(ctx, 3, username, password, "").Err(); err == nil {
287286
auth = true
288-
} else if !strings.HasPrefix(err.Error(), "ERR unknown command") &&
289-
// this check is for compatibility DragonflyDB.
290-
!strings.HasPrefix(err.Error(), "NOAUTH Authentication") {
287+
} else if !isRedisError(err) {
288+
// When the server responds with the RESP protocol and the result is not a normal
289+
// execution result of the HELLO command, we consider it to be an indication that
290+
// the server does not support the HELLO command.
291+
// The server may be a redis-server that does not support the HELLO command,
292+
// or it could be DragonflyDB or a third-party redis-proxy. They all respond
293+
// with different error string results for unsupported commands, making it
294+
// difficult to rely on error strings to determine all results.
291295
return err
292296
}
293297

0 commit comments

Comments
 (0)