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 26348d0 commit 6eb3bf7Copy full SHA for 6eb3bf7
packages/service-library/src/servicelib/fastapi/long_running_tasks/_client.py
@@ -131,9 +131,8 @@ def _client_configuration(self) -> ClientConfiguration:
131
return output
132
133
def _get_url(self, path: str) -> str:
134
- return AnyHttpUrlLegacyAdapter.validate_python(
135
- f"{self._base_url}{self._client_configuration.router_prefix}{path}",
136
- )
+ url = f"{self._base_url}{self._client_configuration.router_prefix}{path}"
+ return f"{AnyHttpUrlLegacyAdapter.validate_python(url)}"
137
138
@retry_on_http_errors
139
async def get_task_status(
0 commit comments