Open
Description
Issue Description
Checklist
- Dependencies installed
- No typos
- Searched existing issues and docs
Expected behaviour
curl --location --request OPTIONS 'http://localhost:8092/api/test'
--data ''
should return
Allow: OPTIONS, POST
Vary: Origin
Date: Fri, 05 Jan 2024 12:42:24 GMT
Actual behaviour
returns
Vary: Origin
Date: Fri, 05 Jan 2024 12:42:24 GMT
not reaching this code in router
ctx.Set(ContextKeyHeaderAllow, currentNode.methods.allowHeader)
instead it is going into this code above
if matchedRouteMethod != nil {
rPath = matchedRouteMethod.ppath
rPNames = matchedRouteMethod.pnames
Steps to reproduce
Working code to debug
package main
import (
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"net/http"
)
func main() {
e := echo.New()
e.HideBanner = true
e.Use(middleware.CORSWithConfig(middleware.CORSConfig{
AllowOrigins: []string{"*"},
AllowHeaders: []string{echo.HeaderOrigin, echo.HeaderContentType, echo.HeaderAccept},
}))
e.Use(middleware.Logger())
e.Use(middleware.Recover())
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
api := e.Group("/api", nil)
api.POST("/test", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, Test!")
})
e.Logger.Fatal(e.Start(":8092"))
}
Version/commit
v4.11.3 and v4.11.4 (only 2 tested)
Metadata
Metadata
Assignees
Labels
No labels