We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 174b34d commit 862c844Copy full SHA for 862c844
1 file changed
riak/transports/http/connection.py
@@ -35,7 +35,7 @@ def _request(self, method, uri, headers={}, body='', stream=False):
35
'multipart/mixed, application/json, */*;q=0.5')
36
try:
37
self._connection.request(method, uri, body, headers)
38
- response = self._connection.getresponse()
+ response = self._connection.getresponse(buffering=True)
39
40
if stream:
41
# The caller is responsible for fully reading the
0 commit comments