Fix failure to connect to shim on daemon restart

Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
Kenfe-Mickael Laventure
2017-08-10 16:49:01 -07:00
parent 7ac351cdfe
commit e661be6a9c
2 changed files with 5 additions and 2 deletions

View File

@@ -17,10 +17,11 @@ import (
"github.com/pkg/errors"
)
func loadBundle(path, workdir, namespace string, events *events.Exchange) *bundle {
func loadBundle(path, workdir, namespace, id string, events *events.Exchange) *bundle {
return &bundle{
path: path,
namespace: namespace,
id: id,
events: events,
workDir: workdir,
}