From 54482f18df12552ef489cd0c9208ee0062ebb7bc Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Wed, 22 Jan 2020 22:39:56 +0000 Subject: [PATCH] virtcontainers: remove json cgroups struct tag json struct tags are not longer needed in sandbox's structures Signed-off-by: Julio Montes --- virtcontainers/sandbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtcontainers/sandbox.go b/virtcontainers/sandbox.go index ce5ec6822..0e2b45d5b 100644 --- a/virtcontainers/sandbox.go +++ b/virtcontainers/sandbox.go @@ -127,7 +127,7 @@ type SandboxConfig struct { // Cgroups specifies specific cgroup settings for the various subsystems that the container is // placed into to limit the resources the container has available - Cgroups *configs.Cgroup `json:"cgroups"` + Cgroups *configs.Cgroup } func (s *Sandbox) trace(name string) (opentracing.Span, context.Context) {