From 2dc31bee2011afafeec77a49d11817b8df6303f9 Mon Sep 17 00:00:00 2001 From: Simon Zolin Date: Mon, 21 Oct 2019 17:50:44 +0300 Subject: [PATCH] * /control/stats: set Content-Type: application/json --- stats/stats_http.go | 1 + 1 file changed, 1 insertion(+) diff --git a/stats/stats_http.go b/stats/stats_http.go index e857ecc3..a507b32c 100644 --- a/stats/stats_http.go +++ b/stats/stats_http.go @@ -41,6 +41,7 @@ func (s *statsCtx) handleStats(w http.ResponseWriter, r *http.Request) { return } + w.Header().Set("Content-Type", "application/json") w.Write(data) }