summaryrefslogtreecommitdiff
path: root/libpod/sql_state.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-02-27 22:52:28 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-01 21:17:51 +0000
commitfa5f99effa7dd2ef9fbd5287b6225590b28713d1 (patch)
tree240a4696de8a499ed7489b67fcbdf4674ca87d19 /libpod/sql_state.go
parent83d7ae6506f7aaf1f7d543412a148b4bf4cd6657 (diff)
downloadpodman-fa5f99effa7dd2ef9fbd5287b6225590b28713d1.tar.gz
podman-fa5f99effa7dd2ef9fbd5287b6225590b28713d1.tar.bz2
podman-fa5f99effa7dd2ef9fbd5287b6225590b28713d1.zip
Convert exec session tracking to use a dedicated struct
This will behave better if we need to add anything to it at a later date - we can add fields to the struct without breaking existing BoltDB databases. Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #412 Approved by: baude
Diffstat (limited to 'libpod/sql_state.go')
-rw-r--r--libpod/sql_state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/sql_state.go b/libpod/sql_state.go
index b3e531ba1..20aa7c0ac 100644
--- a/libpod/sql_state.go
+++ b/libpod/sql_state.go
@@ -338,7 +338,7 @@ func (s *SQLState) UpdateContainer(ctr *Container) error {
newState.IPAddress = ipAddress
newState.SubnetMask = subnetMask
- newState.ExecSessions = make(map[string]int)
+ newState.ExecSessions = make(map[string]*ExecSession)
if err := json.Unmarshal([]byte(execSessions), &newState.ExecSessions); err != nil {
return errors.Wrapf(err, "error parsing container %s exec sessions", ctr.ID())
}