outposts: fix creation of from_env docker client
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
952a7f07c1
commit
7c55616e29
|
@ -36,7 +36,7 @@ class DockerClient(UpstreamDockerClient, BaseClient):
|
||||||
self.ssh = None
|
self.ssh = None
|
||||||
if connection.local:
|
if connection.local:
|
||||||
# Same result as DockerClient.from_env
|
# Same result as DockerClient.from_env
|
||||||
super().__init__(kwargs_from_env())
|
super().__init__(**kwargs_from_env())
|
||||||
else:
|
else:
|
||||||
parsed_url = urlparse(connection.url)
|
parsed_url = urlparse(connection.url)
|
||||||
tls_config = False
|
tls_config = False
|
||||||
|
|
Reference in New Issue