Skip to content

Commit 76933a4

Browse files
updates bom version and adds implementation of new builder method
1 parent b8e61f5 commit 76933a4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ sourceSets {
5454
dependencies {
5555
implementation 'io.reactivex.rxjava3:rxjava:3.1.8'
5656

57-
implementation platform('software.amazon.awssdk:bom:2.23.18')
57+
implementation platform('software.amazon.awssdk:bom:2.24.0')
5858

5959
implementation 'software.amazon.awssdk:s3'
6060
implementation 'software.amazon.awssdk:s3-transfer-manager'

src/test/java/software/amazon/nio/spi/s3/FakeAsyncS3ClientBuilder.java

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ public S3CrtAsyncClientBuilder minimumPartSizeInBytes(Long l) {
5151
BUILDER.minimumPartSizeInBytes(minimumPartSizeInBytes = l); return this;
5252
}
5353

54+
@Override
55+
public S3CrtAsyncClientBuilder maxNativeMemoryLimitInBytes(Long aLong) {
56+
BUILDER.maxNativeMemoryLimitInBytes(aLong); return this;
57+
}
58+
5459
@Override
5560
public S3CrtAsyncClientBuilder targetThroughputInGbps(Double d) {
5661
BUILDER.targetThroughputInGbps(targetThroughputInGbps = d); return this;

0 commit comments

Comments
 (0)