walterddr commented on a change in pull request #7921: URL: https://github.com/apache/pinot/pull/7921#discussion_r772727875
########## File path: pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotTableRestletResource.java ########## @@ -487,15 +492,17 @@ public SuccessResponse updateTableConfig( @ApiOperation(value = "Validate table config for a table", notes = "This API returns the table config that matches the one you get from 'GET /tables/{tableName}'." + " This allows us to validate table config before apply.") - public String checkTableConfig(String tableConfigStr) { + public String checkTableConfig( + String tableConfigStr, + @ApiParam(value = "comma separated list of validation skip") @QueryParam("skipValidate") String skipValidate) { Review comment: ```suggestion @ApiParam(value = "comma separated list of validation type(s) to skip") @QueryParam("validationTypesToSkip") String skipValidate) { ``` -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org