We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a12f6fd + 862c844 commit 134aa51Copy full SHA for 134aa51
1 file changed
riak/transports/http/connection.py
@@ -31,7 +31,7 @@ def _request(self, method, uri, headers={}, body='', stream=False):
31
32
try:
33
self._connection.request(method, uri, body, headers)
34
- response = self._connection.getresponse()
+ response = self._connection.getresponse(buffering=True)
35
36
if stream:
37
# The caller is responsible for fully reading the
0 commit comments