FANNG1 commented on issue #5697:
URL: https://github.com/apache/gravitino/issues/5697#issuecomment-2505358524

   @jesset , thanks for reporting this, the log message is not correct.  The 
configuration like `gravitino.auxService.iceberg-rest.xx` is deprecated but not 
`gravitino.auxService.names`,  do you have time to fix it? 
   
   ```java
   AuxiliaryServiceManager#extractAuxiliaryServiceConfigs() 
   
       config
           .getAllConfig()
   // should filter out `gravitino.auxService.names`
           .forEach(
               (k, v) -> {
                 if (k.startsWith(GRAVITINO_AUX_SERVICE_PREFIX)) {
                   String extractKey = 
k.substring(GRAVITINO_AUX_SERVICE_PREFIX.length());
                   LOG.warn(
                       "The configuration {} is deprecated(still working), 
please use gravitino.{} instead.",
                       k,
                       extractKey);
                   serviceConfigs.put(extractKey, v);
                 }
               });
   ``` 


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to