Merge pull request #13718 from runcom/fix-containers-json

SizeRW & SizeRootFs omitted if empty in /container/json call
This commit is contained in:
Jessie Frazelle 2015-06-03 17:14:58 -07:00
Родитель babf751e1b 6945ac2d02
Коммит fdd6175bca
2 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -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
}

Просмотреть файл

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