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 64c17f3 commit f854ef9Copy full SHA for f854ef9
src/ghga_connector/core/main.py
@@ -59,9 +59,9 @@ async def upload_file( # noqa: PLR0913
59
if is_file_encrypted(file_path):
60
raise exceptions.FileAlreadyEncryptedError(file_path=file_path)
61
62
- upload_api_api_url = get_upload_api_url()
63
- if not is_service_healthy(upload_api_api_url):
64
- raise exceptions.ApiNotReachableError(api_url=upload_api_api_url)
+ upload_api_url = get_upload_api_url()
+ if not is_service_healthy(upload_api_url):
+ raise exceptions.ApiNotReachableError(api_url=upload_api_url)
65
66
uploader = Uploader(
67
client=client,
0 commit comments