Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Kashif Faraz <[email protected]>
  • Loading branch information
abhishekrb19 and kfaraz authored Mar 11, 2024
1 parent 4341955 commit 61fb960
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public class ClientKillUnusedSegmentsTaskQuery implements ClientTaskQuery
private final String id;
private final String dataSource;
private final Interval interval;
@Nullable private final List<String> versions;
@Nullable
private final List<String> versions;
private final Boolean markAsUnused;
private final Integer batchSize;
@Nullable private final Integer limit;
Expand All @@ -52,7 +53,7 @@ public ClientKillUnusedSegmentsTaskQuery(
@JsonProperty("id") String id,
@JsonProperty("dataSource") String dataSource,
@JsonProperty("interval") Interval interval,
@JsonProperty("versions") List<String> versions,
@JsonProperty("versions") @Nullable List<String> versions,
@JsonProperty("markAsUnused") @Deprecated Boolean markAsUnused,
@JsonProperty("batchSize") Integer batchSize,
@JsonProperty("limit") @Nullable Integer limit,
Expand Down

0 comments on commit 61fb960

Please sign in to comment.