Skip to content

Commit

Permalink
add #1593 to 1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kim committed Feb 8, 2017
1 parent 03ec5ff commit ecf267e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ CHANGES
- Deprecated: Adding `sub app` via `app.router.add_subapp()` is deprecated
use `app.add_subapp()` instead, will be removed in 1.4 #1592

- Deprecated: aiohttp.get(), aiohttp.options(), aiohttp.head(), aiohttp.post(),
aiohttp.put(), aiohttp.patch(), aiohttp.delete(), and aiohttp.ws_connect() #1593


1.2.0 (2016-12-17)
------------------
Expand Down
2 changes: 1 addition & 1 deletion aiohttp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def _request(self, method, url, *,
elif self._connector.conn_timeout is not None:
timeout = max(timeout, self._connector.conn_timeout)

# timeout is comulative for all request operations
# timeout is cumulative for all request operations
# (request, redirects, responses, data consuming)
timer = self._time_service.timeout(timeout)

Expand Down
3 changes: 2 additions & 1 deletion docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,8 @@ reading procedures::


.. note::
Timeout is comulative time, it includes all operations like sending request,

Timeout is cumulative time, it includes all operations like sending request,
redirects, response parsing, consuming response, etc.


Expand Down

0 comments on commit ecf267e

Please sign in to comment.