Skip to content

Commit

Permalink
Update gcsfs/core.py
Browse files Browse the repository at this point in the history
Co-authored-by: Sam Levang <39069044+slevang@users.noreply.github.com>
  • Loading branch information
martindurant and slevang authored Mar 18, 2024
1 parent 0f53bcb commit 404029f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcsfs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ async def _rm_files(self, paths, batchsize=20):
# See https://cloud.google.com/storage/docs/batch
for retry in range(1, 6):
remaining = []
for chunk in _chunks(paths, 20):
for chunk in _chunks(paths, batchsize):
parts = []
for i, p in enumerate(chunk):
bucket, key, generation = self.split_path(p)
Expand Down

0 comments on commit 404029f

Please sign in to comment.