Kegan Dougal 2771447c29 Store Promise<Response> instead of Response for HTTP API transactions
This fixes a race whereby:
 - User hits an endpoint.
 - No cached transaction so executes main code.
 - User hits same endpoint.
 - No cache transaction so executes main code.
 - Main code finishes executing and caches response and returns.
 - Main code finishes executing and caches response and returns.

 This race is common in the wild when Synapse is struggling under load.
 This commit fixes the race by:
  - User hits an endpoint.
  - Caches the promise to execute the main code and executes main code.
  - User hits same endpoint.
  - Yields on the same promise as the first request.
  - Main code finishes executing and returns, unblocking both requests.
2016-11-10 14:49:26 +00:00
..
2016-08-24 11:58:40 +01:00
2016-09-05 10:41:27 +01:00
2016-11-08 11:20:26 +00:00
2016-10-11 13:57:22 +01:00
2016-11-04 10:53:42 +00:00
2016-10-24 13:39:49 +01:00
2016-11-08 14:39:55 +00:00
2016-08-08 16:40:39 +01:00
2016-10-20 13:53:15 +01:00