jerqi commented on code in PR #6575:
URL: https://github.com/apache/gravitino/pull/6575#discussion_r1977414190


##########
authorizations/authorization-common/src/main/java/org/apache/gravitino/authorization/common/RangerAuthorizationProperties.java:
##########
@@ -76,15 +76,19 @@ public void validate() {
     Preconditions.checkArgument(
         properties.get(RANGER_ADMIN_URL) != null,
         String.format("%s is required", RANGER_ADMIN_URL));
-    Preconditions.checkArgument(
-        properties.get(RANGER_SERVICE_NAME) != null,
-        String.format("%s is required", RANGER_SERVICE_NAME));
     Preconditions.checkArgument(
         properties.get(RANGER_AUTH_TYPE) != null,
         String.format("%s is required", RANGER_AUTH_TYPE));
     Preconditions.checkArgument(
         properties.get(RANGER_USERNAME) != null, String.format("%s is 
required", RANGER_USERNAME));
     Preconditions.checkArgument(
         properties.get(RANGER_PASSWORD) != null, String.format("%s is 
required", RANGER_PASSWORD));
+
+    if 
(!Boolean.parseBoolean(properties.get(RANGER_SERVICE_CREATE_IF_ABSENT))) {
+      Preconditions.checkArgument(
+          properties.get(RANGER_SERVICE_NAME) != null,
+          String.format(
+              "%s is required if you don't create the absent ranger service", 
RANGER_SERVICE_NAME));

Review Comment:
   OK.



-- 
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

Reply via email to