From 7f9cd51edea8896302e797a1b3fe743df0f659b6 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Tue, 6 Mar 2018 10:49:30 +0000 Subject: [PATCH] Fix comment --- src/github.com/matrix-org/rageshake/submit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/rageshake/submit.go b/src/github.com/matrix-org/rageshake/submit.go index da2b37c..72efc30 100644 --- a/src/github.com/matrix-org/rageshake/submit.go +++ b/src/github.com/matrix-org/rageshake/submit.go @@ -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)