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()
if err != nil || !isRunning {
if err != nil {
d.logger.Error("Error in buildFingerprint(): failed to get containerd status: %v", err)
fp.Health = drivers.HealthStateUndetected
fp.HealthDescription = "Undetected"
return fp
}
if !isRunning {
fp.Health = drivers.HealthStateUnhealthy
fp.HealthDescription = "Unhealthy"
return fp