mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
Avoid reconnect of disk during startup sequence (#14070)
This commit is contained in:
parent
7ee2d1c339
commit
d300e775a6
@ -106,7 +106,7 @@ func isEndpointConnectionStable(diskMap map[Endpoint]StorageAPI, endpoint Endpoi
|
|||||||
if !disk.IsOnline() {
|
if !disk.IsOnline() {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if disk.LastConn().After(lastCheck) {
|
if !lastCheck.IsZero() && disk.LastConn().After(lastCheck) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
Loading…
Reference in New Issue
Block a user