Merge pull request #284 from coolljt0725/set_default_shim

set default shim if shim is nil for backward compatibility
This commit is contained in:
Kenfe-Mickaël Laventure 2016-07-05 11:23:53 -07:00 committed by GitHub
commit 3104c6b537
2 changed files with 7 additions and 2 deletions

View file

@ -143,7 +143,7 @@ func New(opts ContainerOpts) (Container, error) {
}
// Load return a new container from the matchin state file on disk.
func Load(root, id string, timeout time.Duration) (Container, error) {
func Load(root, id, shimName string, timeout time.Duration) (Container, error) {
var s state
f, err := os.Open(filepath.Join(root, id, StateFile))
if err != nil {
@ -165,6 +165,11 @@ func Load(root, id string, timeout time.Duration) (Container, error) {
processes: make(map[string]*process),
timeout: timeout,
}
if c.shim == "" {
c.shim = shimName
}
dirs, err := ioutil.ReadDir(filepath.Join(root, id))
if err != nil {
return nil, err

View file

@ -307,7 +307,7 @@ func (s *Supervisor) restore() error {
continue
}
id := d.Name()
container, err := runtime.Load(s.stateDir, id, s.timeout)
container, err := runtime.Load(s.stateDir, id, s.shim, s.timeout)
if err != nil {
return err
}