Fix restore to correctly set the exec timeout value (containerd)

Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
Kenfe-Mickael Laventure 2016-05-02 14:03:01 -07:00
parent 7279ff91c4
commit 7979ac24fe
2 changed files with 3 additions and 2 deletions

View file

@ -138,7 +138,7 @@ func New(opts ContainerOpts) (Container, error) {
return c, nil
}
func Load(root, id string) (Container, error) {
func Load(root, id string, timeout time.Duration) (Container, error) {
var s state
f, err := os.Open(filepath.Join(root, id, StateFile))
if err != nil {
@ -158,6 +158,7 @@ func Load(root, id string) (Container, error) {
shim: s.Shim,
noPivotRoot: s.NoPivotRoot,
processes: make(map[string]*process),
timeout: timeout,
}
dirs, err := ioutil.ReadDir(filepath.Join(root, id))
if err != nil {

View file

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