From 44cbe7488186bf69aca1cc116e7b6c1e3893a6f1 Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Thu, 17 Dec 2020 16:07:25 -0800 Subject: [PATCH] Mark status as Unhealthy instead of Undetected. --- containerd/driver.go | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/containerd/driver.go b/containerd/driver.go index 44c3b61..77bdc2d 100644 --- a/containerd/driver.go +++ b/containerd/driver.go @@ -307,14 +307,10 @@ func (d *Driver) buildFingerprint() *drivers.Fingerprint { } isRunning, err := d.isContainerdRunning() - 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 { + if err != nil || !isRunning { + if err != nil { + d.logger.Error("Error in buildFingerprint(): failed to get containerd status: %v", err) + } fp.Health = drivers.HealthStateUnhealthy fp.HealthDescription = "Unhealthy" return fp