This function has been deprecated, but is kept for backwards compatibility. This function is subject to removal in a future release.
(bucket, extra_args)
| 811 | |
| 812 | |
| 813 | def add_s3express_defaults(bucket, extra_args): |
| 814 | """ |
| 815 | This function has been deprecated, but is kept for backwards compatibility. |
| 816 | This function is subject to removal in a future release. |
| 817 | """ |
| 818 | if is_s3express_bucket(bucket) and "ChecksumAlgorithm" not in extra_args: |
| 819 | # Default Transfer Operations to S3Express to use CRC32 |
| 820 | extra_args["ChecksumAlgorithm"] = "crc32" |
| 821 | |
| 822 | |
| 823 | def set_default_checksum_algorithm(extra_args): |
nothing calls this directly
no test coverage detected