diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,6 +24,7 @@ type virtigoT struct { names []string hypers []*HyperT droplets []*DropletT + delay time.Duration // how often to poll the hypervisors killcount int unstable time.Time // the last time the cluster was incorrect } @@ -31,8 +32,7 @@ type virtigoT struct { // the stuff that is needed for a hypervisor type HyperT struct { pb *pb.Hypervisor // the Hypervisor protobuf - Delay time.Duration // how often to poll the hypervisor - Dog *time.Ticker // the watchdog timer itself + dog *time.Ticker // the watchdog timer itself lastpoll time.Time // the last time the hypervisor polled killcount int } |
