Github user paul-rogers commented on a diff in the pull request:

    https://github.com/apache/drill/pull/868#discussion_r126833932
  
    --- Diff: 
exec/java-exec/src/main/java/org/apache/drill/exec/server/options/SystemOptionManager.java
 ---
    @@ -314,6 +370,31 @@ public void deleteAllOptions(OptionType type) {
         }
       }
     
    +  public void populateDefualtValues(Map<String, OptionValidator> 
VALIDATORS) {
    +
    +    // populate the options from the config
    +    final Map<String, OptionValidator> tmp = new HashMap<>();
    +    for (final Map.Entry<String, OptionValidator> entry : 
VALIDATORS.entrySet()) {
    +
    +      OptionValidator validator = entry.getValue();
    +      final OptionValue.Kind kind = validator.getKind();
    +      String name = entry.getValue().getOptionName();
    +      OptionValue value;
    +      String configPath = "drill.exec.options.";
    +      String configName = configPath + name;
    +      try {
    +        value = validator.loadConfigDefault(bootConfig,name,configPath);
    +        validator.setDefaultValue(value);
    --- End diff --
    
    Setting the default should be done in `loadConfigDefault`. Actually, since 
there is only one place to load the default from, the name `loadDefault` is 
fine.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to