diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-23 15:28:56 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-01 21:17:50 +0000 |
commit | 2a0c949b9bab88f4e05d39b5e6d7db62bb39df11 (patch) | |
tree | 35c75dcf96b4d571c29daafb54c6bc0c4be29c41 /libpod/test_common.go | |
parent | 920b66707ece354b8dbf00416b5a26abdee93a2f (diff) | |
download | podman-2a0c949b9bab88f4e05d39b5e6d7db62bb39df11.tar.gz podman-2a0c949b9bab88f4e05d39b5e6d7db62bb39df11.tar.bz2 podman-2a0c949b9bab88f4e05d39b5e6d7db62bb39df11.zip |
Add tracking for container exec sessions to DB
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #412
Approved by: baude
Diffstat (limited to 'libpod/test_common.go')
-rw-r--r-- | libpod/test_common.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/test_common.go b/libpod/test_common.go index e4a684f87..b03212a5a 100644 --- a/libpod/test_common.go +++ b/libpod/test_common.go @@ -55,6 +55,7 @@ func getTestContainer(id, name, locksDir string) (*Container, error) { Mounted: true, Mountpoint: "/does/not/exist/tmp/" + id, PID: 1234, + ExecSessions: map[string]int{"abcd": 101, "ef01": 202}, }, valid: true, } |