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

(Updated Aug. 2, 2016, 5:10 p.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 (updated)
-------

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