You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable setting multipart to true/false by defining it as a custom client context parameter (#4903)
* Enable setting multipart to true/false by defining it as a custom client context parameter
* Refactor indentation
* Checking if multi-part is enabled before logging a debug message
* Updated Javadocs
* fix checkstyle
* Modified logging message and added test case to enable cross region along with multi-part
* Fixed checkstyle
* Fixed checkstyle issues
Copy file name to clipboardExpand all lines: services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/S3TransferManager.java
Copy file name to clipboardExpand all lines: services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/TransferManagerFactory.java
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -52,13 +52,13 @@ public static S3TransferManager createTransferManager(DefaultBuilder tmBuilder)
Copy file name to clipboardExpand all lines: services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/TransferManagerLoggingTest.java
+67-7Lines changed: 67 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,12 @@
32
32
33
33
classTransferManagerLoggingTest {
34
34
35
+
privatestaticfinalStringEXPECTED_DEBUG_MESSAGE = "The provided S3AsyncClient is neither an instance of S3CrtAsyncClient or MultipartS3AsyncClient, "
36
+
+ "and thus multipart upload/download feature may not be enabled and resumable file upload may not "
37
+
+ "be supported. To benefit from maximum throughput, consider using "
0 commit comments