jerqi commented on code in PR #6575: URL: https://github.com/apache/gravitino/pull/6575#discussion_r1977416894
########## authorizations/authorization-ranger/src/main/java/org/apache/gravitino/authorization/ranger/RangerAuthorizationPlugin.java: ########## @@ -91,9 +94,42 @@ protected RangerAuthorizationPlugin(String metalake, Map<String, String> config) rangerAdminName = config.get(RangerAuthorizationProperties.RANGER_USERNAME); // Apache Ranger Password should be minimum 8 characters with min one alphabet and one numeric. String password = config.get(RangerAuthorizationProperties.RANGER_PASSWORD); - rangerServiceName = config.get(RangerAuthorizationProperties.RANGER_SERVICE_NAME); + + String serviceName = config.get(RangerAuthorizationProperties.RANGER_SERVICE_NAME); rangerClient = new RangerClientExtension(rangerUrl, authType, rangerAdminName, password); + if (Boolean.parseBoolean( + config.get(RangerAuthorizationProperties.RANGER_SERVICE_CREATE_IF_ABSENT))) { Review Comment: Boolean.parseBoolean can handle null value. Null value equals false. -- 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...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org