Merge pull request #637 from squat/fix_cache_control

server/handlers: fix Cache-Control header
This commit is contained in:
Eric Chiang 2016-10-26 15:07:18 -07:00 committed by GitHub
commit 88896eb949

View file

@ -84,7 +84,7 @@ func (s *Server) handlePublicKeys(w http.ResponseWriter, r *http.Request) {
maxAge = time.Minute * 2 maxAge = time.Minute * 2
} }
w.Header().Set("Cache-Control", fmt.Sprintf("max-age=%d, must-revalidate", maxAge)) w.Header().Set("Cache-Control", fmt.Sprintf("max-age=%d, must-revalidate", int(maxAge.Seconds())))
w.Header().Set("Content-Type", "application/json") w.Header().Set("Content-Type", "application/json")
w.Header().Set("Content-Length", strconv.Itoa(len(data))) w.Header().Set("Content-Length", strconv.Itoa(len(data)))
w.Write(data) w.Write(data)