Just wanted some clarification - within Netflix's Zuul Gateway, the RequestContext object has two methods, setSendZuulResponse and removeRouteHost.
First, can somebody tell me the difference between the two. From this post, they do the same but I can't find documentation that describes these (sendZuulResponse and removeRouteHost).
Second, does the Zuul filter hit the resource/origin server regardless of being filtered but just hides the response to the client? Based on the documentation for sendZuulResponse, it says:
"If this value if true then the response should be sent to the client."
My rationale is, if this value is set to false, then the response should not* be sent to the client; However, Zuul has the response(???), which means that it had sent the request anyways (if that makes sense).
Thanks.