githubxubin commented on issue #10907: URL: https://github.com/apache/apisix/issues/10907#issuecomment-1928642471
> Hi @githubxubin Is the problem only with this route? Are the others working stably? > > 1. if you try to replace from `"uri": "/test/*"` to `"uri": "/test"`, and send the reqest without the last backslash (like `http://10.210.21.130:9080/test` ), will it work? > 2. Are you sure that your upstream 10.210.21.105.1001 is working correctly? > try sending the request directly, ignoring apisix, or from apisix container. 1. I still got 404 according to what you said. 2.10.210.21.105.1001 / test is normal service, in addition, the Route 404 Not Found is apisix returned, Not to the upstream, and this should be no relationship, I'm on the 3.2 - centos is normal, upgrade to 3.6 this kind of problem route config: ``` { "uri": "/test", "name": "test", "groupId": "", "openId": "", "priority": 1, "methods": [ "GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS" ], "upstream": { "nodes": [ { "host": "10.210.21.105", "port": 1001, "weight": 1 } ], "retries": 0, "timeout": { "connect": 6, "send": 6, "read": 6 }, "type": "roundrobin", "scheme": "http", "pass_host": "pass", "keepalive_pool": { "idle_timeout": 60, "requests": 1000, "size": 320 } }, "status": 1 } ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
