kangkaisen commented on issue #549: Add a colocate join meta repair tool
URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456400620
 
 
   The reason for  curl failed is `HttpServerHandler.channelReadComplete` close 
the connect early.  we shouldn't close ctx even if the action is null when we 
want to get the http body.
   
   Besides,we shouldn't handle the request having chunked transfer-encoding 
header. because the `HttpObjectAggregator` will remove  chunked 
transfer-encoding header and add content-length header. 
   
   In a word,  because  the FE is a proxy for BE for some API, so we shouldn't 
handle **chunked transfer-encoding header** and  **100-continue header**.
   
   So, we only need to extend `HttpObjectAggregator` and don't handle 
100-continue and chunked transfer-encoding http header. which is reasonable and 
simple.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org
For additional commands, e-mail: dev-h...@doris.apache.org

Reply via email to