Skip to content

Commit

Permalink
chore(tool): fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
KaimingWan committed Jan 12, 2024
1 parent b4374aa commit f88e9d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public CompletableFuture<Void> completeMultipartUpload(S3AsyncClient writeS3Clie
writeS3Client.completeMultipartUpload(request).thenAccept(completeMultipartUploadResponse -> {
cf.complete(null);
}).exceptionally(ex -> {
System.out.println("[ FAILED ] Upload s3 multipart object, upload id is "+uploadId);
System.out.println("[ FAILED ] Upload s3 multipart object, upload id is " + uploadId);
cf.completeExceptionally(ex);
return null;
});
Expand Down

0 comments on commit f88e9d1

Please sign in to comment.