Revert "confighelper: match core components to their configuration"

This reverts commit d61540cad5.
This commit is contained in:
Eric Callahan 2022-04-04 20:31:23 -04:00
parent 7692197678
commit ac6cf0fac7
No known key found for this signature in database
GPG Key ID: 7027245FBBDDF59A
2 changed files with 8 additions and 7 deletions

View File

@ -79,14 +79,10 @@ class ConfigHelper:
return self.section
def get_options(self) -> Dict[str, str]:
if not self.config.has_section(self.section):
return {}
return dict(self.config[self.section])
def get_hash(self) -> hashlib._Hash:
hash = hashlib.sha256()
if not self.config.has_section(self.section):
return hash
for option, val in self.config[self.section].items():
hash.update(option.encode())
hash.update(val.encode())
@ -96,6 +92,8 @@ class ConfigHelper:
return [s for s in self.sections() if s.startswith(prefix)]
def getsection(self, section: str) -> ConfigHelper:
if section not in self.config:
raise ConfigError(f"No section [{section}] in config")
return ConfigHelper(self.server, self.config, section,
self.orig_sections, self.parsed)
@ -111,9 +109,11 @@ class ConfigHelper:
) -> _T:
try:
val = func(self.section, option)
except (configparser.NoOptionError, configparser.NoSectionError) as e:
except configparser.NoOptionError:
if isinstance(default, SentinelClass):
raise ConfigError(str(e)) from None
raise ConfigError(
f"No option found ({option}) in section [{self.section}]"
) from None
val = default
except Exception:
raise ConfigError(

View File

@ -228,7 +228,8 @@ class Server:
return self.components[component_name]
try:
module = importlib.import_module("components." + component_name)
config = config[component_name]
if component_name in config:
config = config[component_name]
load_func = getattr(module, "load_component")
component = load_func(config)
except Exception: