diff options
author | Christian Svensson <blue@cmd.nu> | 2020-06-23 19:06:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 18:06:01 +0100 |
commit | 8bbe87f42d7736b3f11db0fcfb4557b214e0356d (patch) | |
tree | 40e1cbcdf20d26fca2d141c41e14c212aa958127 /changelog.d | |
parent | Sync ignored table names in synapse_port_db to current database schema (#7717) (diff) | |
download | synapse-8bbe87f42d7736b3f11db0fcfb4557b214e0356d.tar.xz |
Set Content-Length for Metrics requests (#7730)
HTTP requires the response to contain a Content-Length header unless chunked encoding is being used. Prometheus metrics endpoint did not set this, causing software such as prometheus-proxy to not be able to scrape synapse for metrics. Signed-off-by: Christian Svensson <blue@cmd.nu>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/7730.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7730.bugfix b/changelog.d/7730.bugfix new file mode 100644 index 0000000000..9da254b56c --- /dev/null +++ b/changelog.d/7730.bugfix @@ -0,0 +1 @@ +Fix missing `Content-Length` on HTTP responses from the metrics handler. |