MatrixSynapse/synapse/http
Richard van der Hoff afcd655ab6 Use a producer to stream back responses
The problem with dumping all of the json response into the Request object at
once is that doing so starts the timeout for the next request to be received:
so if it takes longer than 60s to stream back the response to the client, the
client never gets it.

The correct solution is to use a Producer; then the timeout is only started
once all of the content is sent over the TCP connection.
2018-08-15 15:04:16 +01:00
..
__init__.py
additional_resource.py
client.py
endpoint.py
matrixfederationclient.py
request_metrics.py
server.py Use a producer to stream back responses 2018-08-15 15:04:16 +01:00
servlet.py
site.py