mirror of
https://github.com/minio/minio.git
synced 2025-11-25 20:16:10 -05:00
Ignore "connection reset" errors while initializing the targets with queue store enabled (#8185)
Fixes #8178
This commit is contained in:
committed by
Harshavardhana
parent
259a5d825b
commit
428836d4e1
@@ -276,7 +276,7 @@ func NewRedisTarget(id string, args RedisArgs, doneCh <-chan struct{}) (*RedisTa
|
||||
|
||||
_, pingErr := conn.Do("PING")
|
||||
if pingErr != nil {
|
||||
if target.store == nil || !IsConnRefusedErr(pingErr) {
|
||||
if target.store == nil || !(IsConnRefusedErr(pingErr) || IsConnResetErr(pingErr)) {
|
||||
return nil, pingErr
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user