Fix limit of 20 docker containers

Fix #963
pull/964/head
Julien Duponchelle 7 years ago
parent 42f409d5f9
commit 2564740665
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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

Loading…
Cancel
Save