summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-26 21:13:25 -0500
committerJeff Carr <[email protected]>2024-10-26 21:13:25 -0500
commit5d1729f99ba8968900eaaaa38f74f327730fffd4 (patch)
treed0fe2a24e443e14fe6ffcb28fd1937f8ec0ee0b0 /structs.go
parentcec509ae7f3156887a807a50a3e8d6982a236435 (diff)
more cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index de1f0bc..8365629 100644
--- a/structs.go
+++ b/structs.go
@@ -20,11 +20,11 @@ func (b *virtigoT) Enable() {
// this app's variables
type virtigoT struct {
- cluster *pb.Cluster // basic cluster settings
- delay time.Duration // how often to poll the hypervisors
- hmap map[*pb.Hypervisor]*HyperT // map to the local struct
- names []string
- hypers []*HyperT
+ cluster *pb.Cluster // basic cluster settings
+ delay time.Duration // how often to poll the hypervisors
+ hmap map[*pb.Hypervisor]*HyperT // map to the local struct
+ names []string
+ hypers []*HyperT
killcount int
unstable time.Time // the last time the cluster was incorrect
changed bool