Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

AbstractConfig Class

As part of this KIP, we a new method will be adding an new method added to the  AbstractConfig to return the documentation for of the given Config

Code Block
public String documentationOf(String key) {
        ConfigDef.ConfigKey configKey = definition.configKeys().get(key);
        if (configKey == null)
            return null;
        return configKey.documentation;
    }

...