diff options
Diffstat (limited to 'start.go')
| -rw-r--r-- | start.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -5,13 +5,14 @@ package main import ( "errors" + pb "go.wit.com/lib/protobuf/virtbuf" "go.wit.com/lib/virtigoxml" "go.wit.com/log" "libvirt.org/go/libvirtxml" ) -func newStart(start string) error { - d := me.cluster.FindDroplet(start) +func newStart(start string, d *pb.Droplet) error { + // d := me.cluster.FindDroplet(start) if d == nil { log.Info("droplet is unknown:", start) return errors.New("droplet is unknown: " + start) |
