We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09dab2e commit 8a5405bCopy full SHA for 8a5405b
gen3workflow/routes/s3.py
@@ -343,9 +343,6 @@ async def s3_endpoint(path: str, request: Request):
343
)
344
s3_api_url = f"https://{user_bucket}.s3.{region}.amazonaws.com/{api_endpoint}"
345
logger.debug(f"Outgoing S3 request: '{request.method} {s3_api_url}'")
346
-
347
- # TODO: Enclose this with a retry if S3 response with a 500 error (which is possible! Failing
348
- # fast can break a whole nextflow workflow)
349
response = await request.app.async_client.request(
350
method=request.method,
351
url=s3_api_url,
0 commit comments