Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zubenkoivan committed Dec 23, 2024
1 parent 33817a9 commit 7e90979
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions platform_monitoring/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,9 +633,7 @@ async def create_monitoring_app(config: Config) -> aiohttp.web.Application:
async def create_platform_api_client(
url: URL, token: str, trace_configs: list[aiohttp.TraceConfig] | None = None
) -> AsyncIterator[ApiClient]:
async with ApiClient(
url=url / "api/v1", token=token, trace_configs=trace_configs
) as client:
async with ApiClient(url=url, token=token, trace_configs=trace_configs) as client:
yield client


Expand Down

0 comments on commit 7e90979

Please sign in to comment.