Reamer commented on code in PR #4524: URL: https://github.com/apache/zeppelin/pull/4524#discussion_r1039429011
########## alluxio/src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java: ########## @@ -76,17 +76,21 @@ public AlluxioInterpreter(Properties property) { alluxioMasterPort = property.getProperty(ALLUXIO_MASTER_PORT); } + private Stream<String> filteredProperties(String prefix) { + return properties.stringPropertyNames().stream().filter(propertyKey -> propertyKey.startsWith(prefix)); Review Comment: I see the following error in CI. ``` [INFO] --- maven-checkstyle-plugin:2.17:check (checkstyle-fail-build) @ zeppelin-alluxio --- [INFO] There is 1 error reported by Checkstyle 6.11.2 with zeppelin/checkstyle.xml ruleset. Error: src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java:[80] (sizes) LineLength: Line is longer than 100 characters (found 107). ``` -- 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: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org