SizeRW & SizeRootFs omitted if empty in /container/json call

Signed-off-by: Antonio Murdaca <runcom@linux.com>
Upstream-commit: 6945ac2d02adbe2931c9e8756ecbb7496b43081a
Component: engine
This commit is contained in:
Antonio Murdaca
2015-06-03 23:13:56 +02:00
parent 10b1c5b724
commit e28afd6060
2 changed files with 2 additions and 4 deletions

View File

@ -107,8 +107,8 @@ type Container struct {
Command string
Created int
Ports []Port
SizeRw int
SizeRootFs int
SizeRw int `json:",omitempty"`
SizeRootFs int `json:",omitempty"`
Labels map[string]string
Status string
}

View File

@ -71,8 +71,6 @@ func (s *DockerSuite) TestContainerApiGetJSONNoFieldsOmitted(c *check.C) {
"Command",
"Created",
"Ports",
"SizeRw",
"SizeRootFs",
"Labels",
"Status",
}