summaryrefslogtreecommitdiff
path: root/event.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-22 18:19:21 -0500
committerJeff Carr <[email protected]>2024-10-22 18:19:21 -0500
commitb1a943fa3dff6a9a0d7f802111334be7d1175492 (patch)
tree9bfc53db8a75466c51b0543a23f81285e3ab72eb /event.go
parent3ba9a5da209bf070a268b20df48a5a41f7b31109 (diff)
compiles and runs
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'event.go')
-rw-r--r--event.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/event.go b/event.go
index 0150994..a030736 100644
--- a/event.go
+++ b/event.go
@@ -101,7 +101,7 @@ func Start(name string) (bool, string) {
var pool []*HyperT
for _, h := range me.hypers {
result += fmt.Sprintln("could start droplet on", name, "on", h.pb.Hostname, h.pb.Active)
- if d.hyperPreferred == h.pb.Hostname {
+ if d.pb.PreferredHypervisor == h.pb.Hostname {
// the config file says this droplet should run on this hypervisor
a, b := h.Start(d)
return a, result + b