summaryrefslogtreecommitdiff
path: root/poll.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-26 12:32:17 -0500
committerJeff Carr <[email protected]>2024-10-26 12:32:17 -0500
commit2e8281d0678d5f201e18aec33aa4e39fa3587230 (patch)
tree0ff7b0beb05729050996808ebe741bcc70004f70 /poll.go
parent6d5c5c607294c39f7af1427e832904f6dc070b75 (diff)
virtigod doing xml now
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'poll.go')
-rw-r--r--poll.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/poll.go b/poll.go
index 778587a..c60debe 100644
--- a/poll.go
+++ b/poll.go
@@ -75,15 +75,6 @@ func (h *HyperT) pollHypervisor() {
h.killcount = 0 // poll worked. reset killcount
}
-func findDroplet(name string) *pb.Droplet {
- for _, d := range me.cluster.Droplets {
- if d.Hostname == name {
- return d
- }
- }
- return nil
-}
-
/*
func findHypervisor(name string) *HyperT {
if h, ok := me.hmap[name]; ok {