set response headers for query endpoint

This commit is contained in:
ncohensm 2016-06-22 15:55:59 -07:00
parent 6e791357ef
commit a0cb60840f
1 changed files with 2 additions and 0 deletions

View File

@ -127,6 +127,8 @@ func (t *HttpListener) ServeHTTP(res http.ResponseWriter, req *http.Request) {
} else if path == "query" { } else if path == "query" {
// Deliver a dummy response to the query endpoint, as some InfluxDB clients test endpoint availability with a query // Deliver a dummy response to the query endpoint, as some InfluxDB clients test endpoint availability with a query
log.Printf("Received query request: [%s]\n", string(body)) log.Printf("Received query request: [%s]\n", string(body))
res.Header().Set("Content-Type", "application/json")
res.Header().Set("X-Influxdb-Version", "1.0")
res.WriteHeader(200) res.WriteHeader(200)
res.Write([]byte("{\"results\":[]}")) res.Write([]byte("{\"results\":[]}"))
} else { } else {