Remove check for existance of lockfile when retrieving containers

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
This commit is contained in:
Matthew Heon
2017-12-05 09:21:50 -05:00
parent eb942b1b47
commit 70da705c36

View File

@ -4,7 +4,6 @@ import (
"database/sql"
"encoding/json"
"io/ioutil"
"os"
"path/filepath"
"time"
@ -386,13 +385,8 @@ func ctrFromScannable(row scannable, runtime *Runtime, specsDir string, lockDir
ctr.valid = true
ctr.runtime = runtime
// Ensure the lockfile exists
lockPath := filepath.Join(lockDir, id)
_, err = os.Stat(lockPath)
if err != nil {
return nil, errors.Wrapf(err, "error performing stat on container %s lockfile", id)
}
// Open and set the lockfile
lockPath := filepath.Join(lockDir, id)
lock, err := storage.GetLockfile(lockPath)
if err != nil {
return nil, errors.Wrapf(err, "error retrieving lockfile for container %s", id)