diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-12-07 13:15:34 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2017-12-07 13:15:34 -0500 |
commit | b71cde19c8b511c054ee42084113ce97ed6d5b62 (patch) | |
tree | c69fc6b6a6ad1d931c059ad2325ca7778b8ba4e8 /libpod/in_memory_state.go | |
parent | b66287689a0c8c9f2f8c01cdca065fb1f6e8d872 (diff) | |
download | podman-b71cde19c8b511c054ee42084113ce97ed6d5b62.tar.gz podman-b71cde19c8b511c054ee42084113ce97ed6d5b62.tar.bz2 podman-b71cde19c8b511c054ee42084113ce97ed6d5b62.zip |
Add ability to refresh state in DB
Also, ensure we always recreate runtime spec so our net namespace
paths will be correct
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod/in_memory_state.go')
-rw-r--r-- | libpod/in_memory_state.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/in_memory_state.go b/libpod/in_memory_state.go index 5d03e62e6..4e4cbb664 100644 --- a/libpod/in_memory_state.go +++ b/libpod/in_memory_state.go @@ -38,6 +38,12 @@ func (s *InMemoryState) Close() error { return nil } +// Refresh clears container and pod stats after a reboot +// In-memory state won't survive a reboot so this is a no-op +func (s *InMemoryState) Refresh() error { + return nil +} + // Container retrieves a container from its full ID func (s *InMemoryState) Container(id string) (*Container, error) { if id == "" { |