Description
What version of Go are you using (go version
)?
go version go1.9.2 darwin/amd64
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (go env
)?
GOARCH="amd64"
GOBIN="/Users/sheerun/go/bin"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/sheerun/go"
GORACE=""
GOROOT="/usr/local/Cellar/go/1.9.2/libexec"
GOTOOLDIR="/usr/local/Cellar/go/1.9.2/libexec/pkg/tool/darwin_amd64"
GCCGO="gccgo"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/22/xz6_9gpx3jggts_8j68_25g80000gn/T/go-build547040878=/tmp/go-build -gno-record-gcc-switches -fno-common"
CXX="clang++"
CGO_ENABLED="1"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
What did you do?
I wanted proper go-lang server that detects when request is cancelled:
package main
import (
"fmt"
"net/http"
"time"
)
func Handler(w http.ResponseWriter, req *http.Request) {
go func() {
<-req.Context().Done()
fmt.Println("done")
}()
time.Sleep(10 * time.Second)
}
func main() {
http.ListenAndServe(":8080", http.HandlerFunc(Handler))
}
What did you expect to see?
Request is immediately cancelled for following calls:
curl http://localhost:8080/hello # then Ctrl+C
curl http://localhost:8080/hello -X POST -d 'asdfa' # then Ctrl+C
curl http://localhost:8080/hello -X PUT -d 'foobar' # then Ctrl+C
What did you see instead?
Request is not cancelled for POST and PUT with body.
Side note: when POST of PUT is sent without body, the request is cancelled immediately as expected
curl http://localhost:8080/hello -X POST # then Ctrl+C
curl http://localhost:8080/hello -X PUT # then Ctrl+C