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
Copy file name to clipboardExpand all lines: core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/ClosableAsyncRequestBodyAdaptorTest.java
Copy file name to clipboardExpand all lines: services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/KnownContentLengthAsyncRequestBodySubscriber.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,10 @@ public void onNext(ClosableAsyncRequestBody asyncRequestBody) {
151
151
}
152
152
153
153
intcurrentPartNum = partNumber.getAndIncrement();
154
+
155
+
log.debug(() -> String.format("Received asyncRequestBody for part number %d with length %s", currentPartNum,
Copy file name to clipboardExpand all lines: services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/UploadWithUnknownContentLengthHelper.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,7 @@ public void onNext(ClosableAsyncRequestBody asyncRequestBody) {
159
159
return;
160
160
}
161
161
intcurrentPartNum = partNumber.incrementAndGet();
162
-
log.debug(() -> String.format("Received asyncRequestBody for part number %d with length %d", currentPartNum,
162
+
log.debug(() -> String.format("Received asyncRequestBody for part number %d with length %s", currentPartNum,
0 commit comments