Commit bf405ef7 by James Cammarata

Merge pull request #7400 from etehtsea/patch-1

Fix env splitting in docker module
parents 56515a38 ad922589
......@@ -384,7 +384,7 @@ class DockerManager:
self.env = None
if self.module.params.get('env'):
self.env = dict(map(lambda x: x.split("="), self.module.params.get('env')))
self.env = dict(map(lambda x: x.split("=", 1), self.module.params.get('env')))
# connect to docker server
docker_url = urlparse(module.params.get('docker_url'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment