From 2564740665e534688736a7552d050646f2265209 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 28 Mar 2017 11:54:16 +0200 Subject: [PATCH] Fix limit of 20 docker containers Fix #963 --- 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 713c7d088..835e7cd12 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) + self._connector = aiohttp.connector.UnixConnector(self._server_url, conn_timeout=2, limit=None) except (aiohttp.errors.ClientOSError, FileNotFoundError): raise DockerError("Can't connect to docker daemon") return self._connector