We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01474ff commit 89bebe1Copy full SHA for 89bebe1
python/ray/serve/tests/test_http_routes.py
@@ -171,9 +171,9 @@ def subpath(self, p: str):
171
return p
172
173
serve.run(D4.bind(), route_prefix="/hello/world/again", name="app4")
174
- check_req("/hello/", "app4", text="1")
175
- check_req("/", "app4", text="2")
176
- check_req("/hello/world/", "app4", text="3")
+ check_req("/hello/", "app1", text="1")
+ check_req("/", "app2", text="2")
+ check_req("/hello/world/", "app3", text="3")
177
check_req("/hello/world/again/", "app4", text="4")
178
check_req("/hello/world/again/hi", "app4", text="hi")
179
0 commit comments