From 02eb3659c9fce7ce67222dc61dfd1acbe1a54d8e Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Tue, 29 Sep 2015 15:53:42 -0700 Subject: [PATCH] Fix constructing the handle --- client/driver/rkt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/driver/rkt.go b/client/driver/rkt.go index c03b42189..2e68e1af0 100644 --- a/client/driver/rkt.go +++ b/client/driver/rkt.go @@ -122,7 +122,7 @@ func (d *RktDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, e } d.logger.Printf("[DEBUG] Started ACI: %q", name) h := &rktHandle{ - proc: cmd.Process, + proc: acmd.Process, name: name, doneCh: make(chan struct{}), waitCh: make(chan error, 1),