diff options
| author | Jeff Carr <[email protected]> | 2024-10-31 22:39:47 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-31 22:39:47 -0500 |
| commit | 26cd0f7709ba552b98aeee83723612eb5e7009cb (patch) | |
| tree | c6d4fc65922ad1d6053a6dbbea791370dbf2cc40 | |
| parent | d51c4627f79f30a234ee7bcab6f21351ec92c88b (diff) | |
ready to try local import
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | poll.go | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -33,23 +33,23 @@ func (h *HyperT) pollHypervisor() { } state := fields[0] name := fields[1] - start := fmt.Sprintf("%-9s %-20s", h.pb.Hostname, name) + start := fmt.Sprintf("%-9s %-20.20s", h.pb.Hostname, name) d := me.cluster.FindDropletByName(name) if d == nil { log.Log(WARN, start, "local defined domain") - log.Log(WARN, start, "local Running AddDropletLocal()") - log.Log(WARN, start, "local Running AddDropletLocal()") - log.Log(WARN, start, "local Running AddDropletLocal()") + log.Log(WARN, start, "local Adding new entry with AddDropletLocal()") + log.Log(WARN, start, "local Adding new entry with AddDropletLocal()") + log.Log(WARN, start, "local Adding new entry with AddDropletLocal()") me.cluster.AddDropletLocal(name, h.pb.Hostname) return } h.lastDroplets[name] = time.Now() if state == "OFF" { if d.LocalOnly == "" { - log.Log(WARN, start, "local duplicate defined (need to resolve this)") + log.Log(WARN, start, "local domain is a duplicate (need to resolve this)") continue } - log.Log(WARN, start, "local ready to import from hypervisor") + log.Log(WARN, start, "local domain ready to import from hypervisor") continue } |
