From b8ee8d69c8890585fe1e6df726a91309dc9e258d Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 26 May 2017 15:42:46 +0200 Subject: [PATCH] Fix unexpected keyword argument 'conn_timeout' Fix #1047 --- gns3server/compute/docker/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/compute/docker/__init__.py b/gns3server/compute/docker/__init__.py index d4840bfa..030c5db2 100644 --- a/gns3server/compute/docker/__init__.py +++ b/gns3server/compute/docker/__init__.py @@ -67,7 +67,7 @@ class Docker(BaseManager): if not sys.platform.startswith("linux"): raise DockerError("Docker is supported only on Linux") try: - self._connector = aiohttp.connector.UnixConnector(self._server_url, conn_timeout=2, limit=None) + self._connector = aiohttp.connector.UnixConnector(self._server_url, limit=None) except (aiohttp.ClientOSError, FileNotFoundError): raise DockerError("Can't connect to docker daemon") return self._connector