How to fix ERR_INVALID_CHUNKED_ENCODING error?

16,529

The issue was caused when returning the response from my proxy service to the browser. The response contained the header Transfer-Encoding: chunked. This header was necessary when the response went from Grafana -> proxy-service, but not required when going from proxy-service -> browser. So the solution was to remove that header before sending the response back to the browser.

Share:
16,529
Edmond
Author by

Edmond

Updated on June 04, 2022

Comments

  • Edmond
    Edmond almost 2 years

    I have a Clojure application that acts as a proxy service. The goal is to proxy requests to http://127.0.0.1:3000 (Grafana service) through the path "/grafana", so that if I access http://127.0.0.1/grafana through the browser, it should proxy my request to port 3000 and display the UI for Grafana.

    The issue I'm running into is that I get an ERR_INVALID_CHUNKED_ENCODING response in the browser. In Wireshark, requests to port 3000 show that the HTTP response reassembles 3 TCP packets. However, the response for requests going through my proxy are not being reassembled, resulting in the chunking error. Anyone have any ideas on how to resolve this?

    Thanks.

  • Danger
    Danger over 5 years
    I ran in to the exact same problem myself!
  • Edmond
    Edmond over 5 years
    @Danger I'm glad this helped you :)