NicolasBachs commented on issue #2644:
URL: https://github.com/apache/apisix/issues/2644#issuecomment-724155584
This is the Dummy API that I am using:
```
package main
import (
"net/http"
"runtime"
)
func handler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
}
func main() {
runtime.GOMAXPROCS(1)
http.HandleFunc("/", handler)
http.ListenAndServe(":3000", nil)
}
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]