diff options
Diffstat (limited to 'libpod/boltdb_state.go')
-rw-r--r-- | libpod/boltdb_state.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/boltdb_state.go b/libpod/boltdb_state.go index f5d0afc4a..d4a6ea4cb 100644 --- a/libpod/boltdb_state.go +++ b/libpod/boltdb_state.go @@ -142,7 +142,7 @@ func (s *BoltState) Refresh() error { state.State = ContainerStateConfigured state.IPAddress = "" state.SubnetMask = "" - state.ExecSessions = make(map[string]int) + state.ExecSessions = make(map[string]*ExecSession) newStateBytes, err := json.Marshal(state) if err != nil { |