Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for HealthyRead (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/erasure-server-pool.go

    						poolIdx, setIdx, poolReadQuorums[poolIdx], erasureSetUpCount[poolIdx][setIdx].online))
    			}
    			result.HealthyRead = result.HealthyRead && healthyRead
    		}
    	}
    
    	if opts.Maintenance {
    		result.Healthy = result.Healthy && drivesHealing == 0
    		result.HealthyRead = result.HealthyRead && drivesHealing == 0
    		result.HealingDrives = drivesHealing
    	}
    
    	return result
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 89.2K bytes
    - Click Count (0)
  2. cmd/healthcheck-handler.go

    	// return how many drives are being healed if any
    	if result.HealingDrives > 0 {
    		w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
    	}
    	if !result.HealthyRead {
    		// As a maintenance call we are purposefully asked to be taken
    		// down, this is for orchestrators to know if we can safely
    		// take this server down, return appropriate error.
    		if opts.Maintenance {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Jun 26 07:44:34 GMT 2024
    - 6.9K bytes
    - Click Count (0)
Back to Top