diff options
| -rw-r--r-- | tsweb/varz/varz.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tsweb/varz/varz.go b/tsweb/varz/varz.go index 15a3be551..9e8b3717d 100644 --- a/tsweb/varz/varz.go +++ b/tsweb/varz/varz.go @@ -240,7 +240,7 @@ type sortedKVs struct { // // This will evolve over time, or perhaps be replaced. func Handler(w http.ResponseWriter, r *http.Request) { - w.Header().Set("Content-Type", "text/plain; version=0.0.4") + w.Header().Set("Content-Type", "text/plain; version=0.0.4; charset=utf-8") s := sortedKVsPool.Get().(*sortedKVs) defer sortedKVsPool.Put(s) |
