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
"description": "Fixed the bug in the transfer manager where files were downloaded sequentially in downloadDirectory. See [#3092](https://github.com/aws/aws-sdk-java-v2/issues/3092)"
Copy file name to clipboardExpand all lines: services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/AsyncBufferingSubscriber.java
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ public void onSubscribe(Subscription subscription) {
65
65
return;
66
66
}
67
67
this.subscription = subscription;
68
-
subscription.request(1);
68
+
subscription.request(maxConcurrentExecutions);
69
69
}
70
70
71
71
@Override
@@ -162,6 +162,13 @@ public void onComplete() {
162
162
flushBufferIfNeeded();
163
163
}
164
164
165
+
/**
166
+
* @return the number of requests that are currently in flight
Copy file name to clipboardExpand all lines: services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/AsyncBufferingSubscriberTest.java
0 commit comments