For a request via spring-cloud-gateway I am seeing multiple transfer-encoding response headers coming through, here is a sample raw header:
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
transfer-encoding: chunked
transfer-encoding: chunked
I see the RemoveHopByHopHeadersFilter removing such headers before making the downstream call, however, it looks like such a filter may be needed once the downstream request is completed also?
I noticed that also the other day.
Will attempt a PR @spencergibb , I checked spring-cloud-netflix zuul and these headers do get removed before and after calling the downstream system, so a similar kind of implementation should work here too
Closed via 12ef935bf4dd1dd304d61604792ff680a9c02ec5
Most helpful comment
I noticed that also the other day.