aio-libs / aio-libs/aiohttp

Response content is omitted if it is erroneous

Abierto
#1,843 7 comentarios 0 reacciones 0 asignados Ver en GitHub
enhancement
Lenguaje dominante
Python
Estrellas
16.5k
Forks
2.4k
Merge medio
17 h 22 min
PR fusionados (30 d)
212

Descripción

## Long story short

Some http response content could be broken, in this case caller should be able to allow access to raw response content.

## Expected behaviour

Disable the gzip decompression on demand and return the raw data.

## Actual behaviour

Changes due to set env variable, see below.

## Steps to reproduce

```
import aiohttp
import asyncio
run = asyncio.get_event_loop().run_until_complete
resp = run(aiohttp.request('get', 'http://www.rofu.de'))
#FlowControlStreamReader protocol
run(resp.read())
#b''
```
when `AIOHTTP_NO_EXTENSIONS=1`

```
import aiohttp
import asyncio
run = asyncio.get_event_loop().run_until_complete
resp = run(aiohttp.request('get', 'http://www.rofu.de'))
#FlowControlStreamReader protocol
len(run(resp.read())) # blocks and raises TimeoutError
```

## Your environment

python 3.5.2
aiohttp 2.0.7
ubuntu 16.04

Guía de contribución

Abrir la guía de contribución

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.