Release request. Eat unread part of HTTP BODY if present.
(self)
| 292 | |
| 293 | @asyncio.coroutine |
| 294 | def release(self): |
| 295 | """Release request. |
| 296 | |
| 297 | Eat unread part of HTTP BODY if present. |
| 298 | """ |
| 299 | chunk = yield from self._payload.readany() |
| 300 | while chunk is not EOF_MARKER or chunk: |
| 301 | chunk = yield from self._payload.readany() |
| 302 | |
| 303 | @asyncio.coroutine |
| 304 | def read(self): |