From cc4be958e8a3a311f535c3924e70d4b33e7d1178 Mon Sep 17 00:00:00 2001 From: Michael Wan Date: Mon, 25 Mar 2019 08:53:24 -0400 Subject: [PATCH] bugfix: not save ExecIds to meta.json file Signed-off-by: Michael Wan --- daemon/mgr/container_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/mgr/container_types.go b/daemon/mgr/container_types.go index f83ea9184..887f7ac1b 100644 --- a/daemon/mgr/container_types.go +++ b/daemon/mgr/container_types.go @@ -192,7 +192,7 @@ type Container struct { Driver string `json:"Driver,omitempty"` // exec ids - ExecIds []string `json:"ExecIDs,omitempty"` + ExecIds []string `json:"-"` // Snapshotter, GraphDriver is same, keep both // just for compatibility