Mark status as Unhealthy instead of Undetected.

This commit is contained in:
Shishir Mahajan 2020-12-17 16:07:25 -08:00
parent c4060e6466
commit 44cbe74881

View File

@ -307,14 +307,10 @@ func (d *Driver) buildFingerprint() *drivers.Fingerprint {
} }
isRunning, err := d.isContainerdRunning() isRunning, err := d.isContainerdRunning()
if err != nil { if err != nil || !isRunning {
d.logger.Error("Error in buildFingerprint(): failed to get containerd status: %v", err) if err != nil {
fp.Health = drivers.HealthStateUndetected d.logger.Error("Error in buildFingerprint(): failed to get containerd status: %v", err)
fp.HealthDescription = "Undetected" }
return fp
}
if !isRunning {
fp.Health = drivers.HealthStateUnhealthy fp.Health = drivers.HealthStateUnhealthy
fp.HealthDescription = "Unhealthy" fp.HealthDescription = "Unhealthy"
return fp return fp