Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Dec 17, 2024
1 parent 3a147e2 commit 8dd6863
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
#- "3.9"
#- "3.10"
#- "3.11"
- "3.12"
- "3.13"
#- "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"]

env:
Expand Down
4 changes: 3 additions & 1 deletion s3fs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2395,7 +2395,9 @@ def upload_part(part_data: bytes):
if len(part_data) == 0:
return
part = len(self.parts) + 1
logger.debug("Upload chunk %s, %s" % (self, part))
logger.debug(
"Upload chunk %s, %s; %s bytes" % (self, part, len(part_data))
)

out = self._call_s3(
"upload_part",
Expand Down

0 comments on commit 8dd6863

Please sign in to comment.