From 6fa828906e893f38757228705e0888b01f333201 Mon Sep 17 00:00:00 2001 From: Leon Verrall Date: Thu, 24 Oct 2019 10:25:44 +0100 Subject: [PATCH] Actually fix chunking --- src/urllib3/connectionpool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/urllib3/connectionpool.py b/src/urllib3/connectionpool.py index c48a3080ac..26c4bd70ab 100644 --- a/src/urllib3/connectionpool.py +++ b/src/urllib3/connectionpool.py @@ -839,7 +839,7 @@ def drain_and_release_conn(response): timeout=timeout, pool_timeout=pool_timeout, release_conn=release_conn, - chunked=False, + chunked=chunked, body_pos=body_pos, **response_kw )