jerqi commented on code in PR #6575: URL: https://github.com/apache/gravitino/pull/6575#discussion_r1976807637
########## 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))) { + if (serviceName == null) { + serviceName = config.get(BaseAuthorization.UUID); + } + + try { + rangerClient.getService(serviceName); + } catch (RangerServiceException rse) { + if (rse.getStatus().equals(ClientResponse.Status.NOT_FOUND)) { Review Comment: Yes, they are different. I used the UT to verify this. -- 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