Skip to content

Commit

Permalink
Revert the value of MAX_BATCH_OPERATION_SIZE in gcsio
Browse files Browse the repository at this point in the history
This value was changed in PR apache#29360 to 1000, which led to
internal test failure.
  • Loading branch information
shunping committed Nov 21, 2023
1 parent 32b1067 commit 374105f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/io/gcp/gcsio.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

# Maximum number of operations permitted in GcsIO.copy_batch() and
# GcsIO.delete_batch().
MAX_BATCH_OPERATION_SIZE = 1000
MAX_BATCH_OPERATION_SIZE = 100


def parse_gcs_path(gcs_path, object_optional=False):
Expand Down

0 comments on commit 374105f

Please sign in to comment.