diff --git a/client/client.go b/client/client.go index fb6261b66..59458c8d3 100644 --- a/client/client.go +++ b/client/client.go @@ -1065,7 +1065,7 @@ func (c *Client) updateNodeFromDriver(name string, fingerprint, health *structs. // Only emit an event if the health status has changed, not if we are // simply updating a node on startup - if health.Healthy != oldVal.Healthy && oldVal.HealthDescription != "" { + if health.Healthy != oldVal.Healthy && health.HealthDescription != "" { event := &structs.NodeEvent{ Subsystem: "Driver", Message: health.HealthDescription,