Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use the body proxy to freeze headers | Aaron Patterson | 2014-03-12 | 1 | -2/+12 |
| | | | | | | avoid freezing the headers until the web server has actually read data from the body proxy. Once the webserver has read data, then we should throw an error if someone tries to set a header | ||||
* | only write the jar if the response isn't committed | Aaron Patterson | 2014-03-12 | 1 | -0/+1 |
| | | | | | | | | | | | when streaming responses, we need to make sure the cookie jar is written to the headers before returning up the stack. This commit introduces a new method on the response object that writes the cookie jar to the headers as the response is committed. The middleware and test framework will not write the cookie headers if the response has already been committed. fixes #14352 | ||||
* | Alias refute methods to assert_not and perfer assert_not on tests | Rafael Mendonça França | 2012-12-31 | 1 | -1/+1 |
| | |||||
* | push header merge down to a private method so that live responses can have ↵ | Aaron Patterson | 2012-08-13 | 1 | -0/+11 |
| | | | | their own header object | ||||
* | live response headers can be merged with a hash | Aaron Patterson | 2012-08-13 | 1 | -0/+6 |
| | |||||
* | freeze the header object | Aaron Patterson | 2012-07-29 | 1 | -0/+2 |
| | |||||
* | raise exceptions on header set after response committed | Aaron Patterson | 2012-07-29 | 1 | -0/+19 |
| | |||||
* | make sure appropriate headers are set and deleted | Aaron Patterson | 2012-07-29 | 1 | -0/+11 |
| | |||||
* | added live responses which can be written and read in separate threads | Aaron Patterson | 2012-07-29 | 1 | -0/+34 |