cmccabe commented on code in PR #12036:
URL: https://github.com/apache/kafka/pull/12036#discussion_r849853060
##########
clients/src/main/java/org/apache/kafka/clients/admin/UpdateFeaturesOptions.java:
##########
@@ -26,4 +26,14 @@
*/
@InterfaceStability.Evolving
public class UpdateFeaturesOptions extends
AbstractOptions<UpdateFeaturesOptions> {
+ private boolean validateOnly = false;
+
+ public boolean validateOnly() {
+ return validateOnly;
+ }
+
+ public UpdateFeaturesOptions dryRun(boolean dryRun) {
Review Comment:
Looking at this again, I can see that I forgot that it isn't just the
parameter name, but also the method name.
I guess then let's just deprecate this one and add the validateOnly one
--
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]