> On Aug. 3, 2016, 3:58 a.m., Joshua Cohen wrote:
> > So, on further reflection, it doesn't necessarily make sense for the 
> > response type to be dictated by the `Content-Type` of the request. We 
> > should probably use the `Accept` header instead? I don't necessarily know 
> > if the use case exists to send json yet want to receive binary, but it's 
> > more idiomatic HTTP to support that possibility.

+1 for the accept header


- Stephan


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50685/#review144577
-----------------------------------------------------------


On Aug. 3, 2016, 2:10 a.m., Zameer Manji wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/50685/
> -----------------------------------------------------------
> 
> (Updated Aug. 3, 2016, 2:10 a.m.)
> 
> 
> Review request for Aurora, Joshua Cohen, Maxim Khutornenko, and Dmitriy 
> Shirchenko.
> 
> 
> Bugs: AURORA-1743
>     https://issues.apache.org/jira/browse/AURORA-1743
> 
> 
> Repository: aurora
> 
> 
> Description
> -------
> 
> This replaces the `TServlet` servlet from thrift with our own servlet which 
> dispatches thrift responses based on the content type of the request. This 
> enables a client to use either the thrift json protocol or the binary 
> protocol when communicating with the scheduler.
> 
> Without this patch the current behaviour is:
> - Regardless of content type of the request, assume the request is json and 
> return json with a `application/x-thrift` content type.
> 
> With this patch the behaviour becomes:
> - A request with no content type is assumed to be json and returns json with 
> a `application/vnd.apache.thrift.json` content type. This maintains backwards 
> compatability with clients that may not set a content type.
> - A request with a content type of `application/x-thrift` is assumed to be 
> json and returns json with a `application/vnd.apache.thrift.json` content 
> type.  This maintains backwards compatability with the client.
> - A request with a content type of `application/json` returns json with a 
> `application/vnd.apache.thrift.json` content type. This maintains backwards 
> compatability with the AJAX UI.
> - A request with a content type of `application/vnd.apache.thrift.json` 
> returns json with a `application/vnd.apache.thrift.json` content type.
> - A request with a content type of `application/vnd.apache.thrift.binary` 
> returns binary thrift with a `application/vnd.apache.thrift.json` content 
> type.
> - Any other content type in a request results in a HTTP 415 response.
> 
> 
> Diffs
> -----
> 
>   RELEASE-NOTES.md d46420ef876b88d9ab68c4816f1c2d6780aba702 
>   src/main/java/org/apache/aurora/scheduler/http/api/ApiModule.java 
> cd5adf9655dc3368dbe06bfee15c65182176be2e 
>   
> src/main/java/org/apache/aurora/scheduler/http/api/TContentAwareServlet.java 
> PRE-CREATION 
>   src/test/java/org/apache/aurora/scheduler/http/api/ApiIT.java 
> 31f5cb3bed48eef60c3b2becb2ed285e93f2bd5a 
>   
> src/test/java/org/apache/aurora/scheduler/http/api/TContentAwareServletTest.java
>  PRE-CREATION 
> 
> Diff: https://reviews.apache.org/r/50685/diff/
> 
> 
> Testing
> -------
> 
> 
> Thanks,
> 
> Zameer Manji
> 
>

Reply via email to