We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f290aaf commit 74ed1c1Copy full SHA for 74ed1c1
pkg/deployment/resources/member_cleanup.go
@@ -71,8 +71,9 @@ func (r *Resources) cleanupRemovedClusterMembers() error {
71
r.health.mutex.Unlock()
72
73
// Only accept recent cluster health values
74
- if time.Since(ts) > maxClusterHealthAge {
75
- log.Info().Msg("Cleanup longer than max cluster health exiting")
+ healthAge := time.Since(ts)
+ if healthAge > maxClusterHealthAge {
76
+ log.Info().Dur("age", healthAge).Msg("Cleanup longer than max cluster health. Exiting")
77
return nil
78
}
79
0 commit comments