Mark status as Unhealthy instead of Undetected.
This commit is contained in:
parent
c4060e6466
commit
44cbe74881
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user