Skip to content

Commit

Permalink
Up minimum version of CRT required to support s3express (#3979)
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt authored Dec 21, 2023
1 parent fdb0076 commit 3d6e139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boto3/s3/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ def create_transfer_manager(client, config, osutil=None):


def _should_use_crt(config):
# This feature requires awscrt>=0.19.17
if HAS_CRT and has_minimum_crt_version((0, 19, 17)):
# This feature requires awscrt>=0.19.18
if HAS_CRT and has_minimum_crt_version((0, 19, 18)):
is_optimized_instance = awscrt.s3.is_optimized_for_system()
else:
is_optimized_instance = False
Expand Down

0 comments on commit 3d6e139

Please sign in to comment.