Fix incorrect var name for api_version

This commit is contained in:
Micheal Waltz 2015-07-28 15:11:33 -07:00
parent 613fe54908
commit b43f236b05

View file

@ -1012,7 +1012,7 @@ class DockerManager(object):
self.module.fail_json(msg=str(e))
#For v1.19 API and above use HostConfig, otherwise use Config
if docker_api_version >= 1.19:
if api_version >= 1.19:
actual_mem = container['HostConfig']['Memory']
else:
actual_mem = container['Config']['Memory']