Fix comment

This commit is contained in:
Richard van der Hoff 2018-03-06 10:49:30 +00:00
parent e88a448a20
commit 7f9cd51ede
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ type submitResponse struct {
func (s *submitServer) ServeHTTP(w http.ResponseWriter, req *http.Request) {
// if we attempt to return a response without reading the request body,
// haproxy (apache?) gets upset and returns a 500. Let's try this.
// apache gets upset and returns a 500. Let's try this.
defer req.Body.Close()
defer io.Copy(ioutil.Discard, req.Body)