wuchong commented on a change in pull request #9024: [FLINK-13119] add blink 
table config to documentation
URL: https://github.com/apache/flink/pull/9024#discussion_r305254580
 
 

 ##########
 File path: 
flink-docs/src/test/java/org/apache/flink/docs/configuration/ConfigOptionsDocsCompletenessITCase.java
 ##########
 @@ -177,7 +177,8 @@ private static void 
compareDocumentedAndExistingOptions(Map<String, DocumentedOp
                        .map(element -> 
element.getElementsByTag("tbody").get(0))
                        .flatMap(element -> 
element.getElementsByTag("tr").stream())
                        .map(tableRow -> {
-                               String key = tableRow.child(0).text();
+                               // split space to exclude document tags.
+                               String key = tableRow.child(0).text().split(" 
")[0];;
 
 Review comment:
   What's the case to fix? 

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to