Change opLock mutex for containers to sync.Locker

Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
Matthew Heon 2017-07-14 17:09:08 -04:00
parent 4086f2bc37
commit a3c95bf903
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,7 @@ type Container struct {
trusted bool
state *ContainerState
metadata *pb.ContainerMetadata
opLock sync.Mutex
opLock sync.Locker
// this is the /var/run/storage/... directory, erased on reboot
bundlePath string
// this is the /var/lib/storage/... directory
@ -79,6 +79,7 @@ func NewContainer(id string, name string, bundlePath string, logPath string, net
dir: dir,
state: state,
stopSignal: stopSignal,
opLock: new(sync.Mutex),
}
return c, nil
}