emanuelh-cloud commented on issue #12497:
URL: https://github.com/apache/ignite/issues/12497#issuecomment-3632238056

   There is no .Resolve() in the method below
   
    private SuperRoot convertToSuperRoot(String hocon) {
           try {
               Config config = ConfigFactory.parseString(hocon);
               KeyIgnorer keyIgnorer = module == null ? s -> false : 
KeyIgnorer.fromDeletedPrefixes(module.deletedPrefixes());
   
               ConfigurationSource hoconSource = 
HoconConverter.hoconSource(config.root(), keyIgnorer);
   
               SuperRoot superRoot = generator.createSuperRoot();
               hoconSource.descend(superRoot);
   
               return superRoot;
           } catch (Exception e) {
               throw new ConfigurationValidationException("Failed to parse 
HOCON: " + e.getMessage());
           }
       }


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