Need to provide ID of container being updated

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
This commit is contained in:
Matthew Heon 2017-11-09 17:07:28 -05:00
parent b10fb66c28
commit 898138441d
1 changed files with 2 additions and 1 deletions

View File

@ -418,7 +418,8 @@ func (s *SQLState) SaveContainer(ctr *Container) error {
ctr.state.Mountpoint,
timeToSQL(ctr.state.StartedTime),
timeToSQL(ctr.state.FinishedTime),
ctr.state.ExitCode)
ctr.state.ExitCode,
ctr.ID())
if err != nil {
return errors.Wrapf(err, "error updating container %s state in database", ctr.ID())
}