summaryrefslogtreecommitdiff
path: root/event.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-27 02:29:45 -0500
committerJeff Carr <[email protected]>2024-10-27 02:29:45 -0500
commitd0767eb9843fcdb9ab0e73200d8a9516e28c200c (patch)
treeca89594578c692211753e1d988c01c9aedcd3ba3 /event.go
parent5d1729f99ba8968900eaaaa38f74f327730fffd4 (diff)
validate stuff should be here
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'event.go')
-rw-r--r--event.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/event.go b/event.go
index 0b4549a..0a8ea63 100644
--- a/event.go
+++ b/event.go
@@ -142,6 +142,12 @@ func Start(name string) (bool, string) {
n := a + rand.Intn(b-a)
result += fmt.Sprintln("pool has", len(pool), "members", "rand =", n)
h := pool[n]
+
+ // send the search directories to the hypervisor
+ result += fmt.Sprintln("h.sendDirs() HERE")
+ result += fmt.Sprintln("h.sendDirs() HERE")
+ h.sendDirs()
+
startbool, startresult := h.start(d)
return startbool, result + startresult
}