mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 07:56:38 +00:00
Fix issue with comparing versions improperly.
This allows old versions of docker api to function.
This commit is contained in:
committed by
Matt Clay
parent
8638d9d26c
commit
876bdb62e1
@@ -1109,7 +1109,7 @@ class DockerManager(object):
|
||||
self.module.fail_json(msg=str(e))
|
||||
|
||||
#For v1.19 API and above use HostConfig, otherwise use Config
|
||||
if api_version >= 1.19:
|
||||
if docker.utils.compare_version('1.19', api_version) >= 0:
|
||||
actual_mem = container['HostConfig']['Memory']
|
||||
else:
|
||||
actual_mem = container['Config']['Memory']
|
||||
@@ -1483,7 +1483,7 @@ class DockerManager(object):
|
||||
params['host_config'] = self.create_host_config()
|
||||
|
||||
#For v1.19 API and above use HostConfig, otherwise use Config
|
||||
if api_version < 1.19:
|
||||
if docker.utils.compare_version('1.19', api_version) < 0:
|
||||
params['mem_limit'] = mem_limit
|
||||
else:
|
||||
params['host_config']['Memory'] = mem_limit
|
||||
|
||||
Reference in New Issue
Block a user