Skip to content

Commit 6b3058a

Browse files
committed
Add changelog
1 parent f1af8b7 commit 6b3058a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "bugfix",
3+
"category": "S3 Transfer Manager",
4+
"contributor": "",
5+
"description": "Fixed an issue where cancelling a directory transfer did not fully stop the operation."
6+
}

services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/AsyncBufferingSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public AsyncBufferingSubscriber(Function<T, CompletableFuture<?>> consumer,
4848
CompletableFuture<Void> returnFuture,
4949
int maxConcurrentExecutions) {
5050
this.returnFuture = returnFuture;
51-
this.consumer = consumer;
51+
this.consumer = consumer;
5252
this.maxConcurrentExecutions = maxConcurrentExecutions;
5353
this.numRequestsInFlight = new AtomicInteger(0);
5454
this.requestsInFlight = ConcurrentHashMap.newKeySet();

0 commit comments

Comments
 (0)