Joy Zhang

Results 2 comments of Joy Zhang

What's the reason that this PR can not yet be merged?

Try below codes, it can stability reproduce this case: ```go package main import ( "log" "net/http" "time" "github.com/gin-contrib/timeout" "github.com/gin-gonic/gin" ) func main() { g := gin.Default() g.Use(timeout.New( timeout.WithTimeout(time.Second), timeout.WithHandler(func(ctx *gin.Context)...