Skip to content

Commit

Permalink
S3: retrieve S3_UPLOAD_PART_MIN_SIZE from env variable (#6220)
Browse files Browse the repository at this point in the history
  • Loading branch information
agilan2001 authored Apr 22, 2023
1 parent 7fad082 commit 10508c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moto/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_s3_custom_endpoints() -> List[str]:
return []


S3_UPLOAD_PART_MIN_SIZE = 5242880
S3_UPLOAD_PART_MIN_SIZE = int(os.environ.get("S3_UPLOAD_PART_MIN_SIZE", "5242880"))


def get_s3_default_key_buffer_size() -> int:
Expand Down

0 comments on commit 10508c5

Please sign in to comment.