diff options
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/sql_state.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/sql_state.go b/libpod/sql_state.go index 424eb81fb..034fc03e1 100644 --- a/libpod/sql_state.go +++ b/libpod/sql_state.go @@ -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()) } |