Skip to content

Commit

Permalink
Fix isTruncated field name of S3 List API to be pascal case (#2979)
Browse files Browse the repository at this point in the history
Co-authored-by: Arun Bhima <[email protected]>
  • Loading branch information
Arun-LinkedIn and Arun Bhima authored Jan 7, 2025
1 parent 58bae5c commit 6683f02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public static abstract class AbstractListBucketResult {
private List<Contents> contents;
@JacksonXmlProperty(localName = "EncodingType")
private String encodingType;
@JacksonXmlProperty(localName = "isTruncated")
@JacksonXmlProperty(localName = "IsTruncated")
private Boolean isTruncated;

private AbstractListBucketResult() {
Expand Down

0 comments on commit 6683f02

Please sign in to comment.