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 f83ae39 commit ca47661Copy full SHA for ca47661
minos/api_gateway/rest/handler.py
@@ -24,7 +24,7 @@ async def orchestrate(request: web.Request) -> web.Response:
24
discovery_port = request.app["config"].discovery.connection.port
25
26
verb = request.method
27
- url = str(request.rel_url.with_query({}).with_fragment(""))
+ url = f"/{request.match_info['endpoint']}"
28
29
discovery_data = await discover(discovery_host, int(discovery_port), "/microservices", verb, url)
30
0 commit comments