We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328b54e commit 75ab67fCopy full SHA for 75ab67f
1 file changed
rocketpool/node/collectors/version-update-collector.go
@@ -23,15 +23,14 @@ const (
23
// VersionUpdateCollector exposes whether a newer Smart Node release is available.
24
type VersionUpdateCollector struct {
25
versionUpdate *prometheus.Desc
26
- current string
27
- latestURL string
28
- client *http.Client
29
- logf func(string, ...interface{})
+ current string
+ latestURL string
+ client *http.Client
+ logf func(string, ...interface{})
30
31
mu sync.Mutex
32
updateAvailable float64
33
latestVersion string
34
- lastChecked time.Time
35
}
36
37
type githubReleaseResponse struct {
0 commit comments