diff options
| author | Jeff Carr <[email protected]> | 2024-10-28 08:06:14 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-28 08:06:14 -0500 |
| commit | c12d3a2dbbe31b63a9ab4f2341bc407645d7e08b (patch) | |
| tree | 991aec4b26378073e3f75f21037f603756da6076 /dump.go | |
| parent | de5f5c6a85b14810cca87bd89e439ce52698f965 (diff) | |
continuing work on tracking droplet state
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'dump.go')
| -rw-r--r-- | dump.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ func dumpDroplets(w http.ResponseWriter) { } arp := strings.Join(macs, " ") if d.CurrentState == pb.DropletState_ON { - fmt.Fprintln(w, i, "droplet:", arp, d.Hostname, d.StartState, d.CurrentState) + fmt.Fprintln(w, i, "droplet:", arp, d.Hostname, d.StartState, d.CurrentState, d.CurrentHypervisor) continue } if d.StartState == pb.DropletState_ON { |
