Revert "confighelper: match core components to their configuration"
This reverts commit d61540cad5
.
This commit is contained in:
parent
7692197678
commit
ac6cf0fac7
|
@ -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(
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue