Merge pull request #19961 from coolljt0725/check_nil

1.10.0-rc3: Check nil before set resource.OomKillDisable
This commit is contained in:
Sebastiaan van Stijn 2016-02-03 14:52:18 +01:00
Родитель 0736dba624 09a33b5f60
Коммит f37e10aee3
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -208,10 +208,12 @@ func (daemon *Daemon) populateCommand(c *container.Container, env []string) erro
BlkioThrottleWriteBpsDevice: writeBpsDevice,
BlkioThrottleReadIOpsDevice: readIOpsDevice,
BlkioThrottleWriteIOpsDevice: writeIOpsDevice,
OomKillDisable: *c.HostConfig.OomKillDisable,
MemorySwappiness: -1,
}
if c.HostConfig.OomKillDisable != nil {
resources.OomKillDisable = *c.HostConfig.OomKillDisable
}
if c.HostConfig.MemorySwappiness != nil {
resources.MemorySwappiness = *c.HostConfig.MemorySwappiness
}