Comment 3 for bug 214227

Revision history for this message
Benjamin Kampmann (lightyear) wrote :

We have a fixed http client for elisa/0.5 but we have since they change the behaviour of some parts sligthly, we need to go through all our code and fix the implementations on top of the http client as well. Like the commit http://bazaar.launchpad.net/~elisa-developers/elisa/http_client/revision/63 shows:

{{{#!python
read_dfr = response.stream.read()
}}}

needs to be changed to

{{{#!python
read_dfr = defer.maybeDeferred(
          BufferedStream(response.stream).readExactly)
}}}