Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing keep-alive #406

Merged
merged 8 commits into from
Jun 11, 2015
Merged
Prev Previous commit
Next Next commit
Fixed indentation bug
  • Loading branch information
gabtremblay committed Jun 9, 2015
commit 41de52e30f516dfa84da958187af05c92f88c694
4 changes: 2 additions & 2 deletions aiohttp/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ def connect(self, req):
if self._conns.get(key, None) is None:
self._conns[key] = []

self._conns[key].append((transport, proto,
self._loop.time()))
self._conns[key].append((transport, proto,
self._loop.time()))
except asyncio.TimeoutError as exc:
raise ClientTimeoutError(
'Connection timeout to host %s:%s ssl:%s' % key) from exc
Expand Down