swaminathanmanish commented on code in PR #10722:
URL: https://github.com/apache/pinot/pull/10722#discussion_r1186529627
##########
pinot-common/src/main/java/org/apache/pinot/common/restlet/resources/StartReplaceSegmentsRequest.java:
##########
@@ -39,6 +40,12 @@ public class StartReplaceSegmentsRequest {
private final List<String> _segmentsTo;
private final Map<String, String> _customMap;
+ public StartReplaceSegmentsRequest(@JsonProperty("segmentsFrom") @Nullable
List<String> segmentsFrom,
+ @JsonProperty("segmentsTo") @Nullable List<String> segmentsTo) {
+ this(segmentsFrom, segmentsTo, null);
+ }
+
+ @JsonCreator
public StartReplaceSegmentsRequest(@JsonProperty("segmentsFrom") @Nullable
List<String> segmentsFrom,
Review Comment:
This change actually breaks [current usage of the
API](https://github.com/apache/pinot/pull/10679/files), by adding the new
parameter. Any user who pulls in this code, will see a compilation
failure/build break. It used to take only 2 params and now the user has to pass
in a null.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]