Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Dec 17, 2024
1 parent 8dd6863 commit 9d3a49e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
#- "3.11"
- "3.12"
#- "3.13"
aiobotocore-version: [">=2.5.4,<2.6.0", ">=2.7.0,<2.8.0", ">=2.8.0,<2.9.0", "<3.0.0"]
aiobotocore-version: [">=2.5.4,<2.6.0", ]#">=2.7.0,<2.8.0", ">=2.8.0,<2.9.0", "<3.0.0"]

env:
BOTO_CONFIG: /dev/null
Expand Down
4 changes: 3 additions & 1 deletion s3fs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ async def _error_wrapper(func, *, args=(), kwargs=None, retries):
kwargs = {}
for i in range(retries):
try:
return await func(*args, **kwargs)
out = await func(*args, **kwargs)
logger.debug("Response: %s", out)
return out
except S3_RETRYABLE_ERRORS as e:
err = e
logger.debug("Retryable error: %s", e)
Expand Down

0 comments on commit 9d3a49e

Please sign in to comment.