mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-10 20:11:32 +01:00
Clarify error message when plugin config parsers raise an error (#8492)
This turns: Failed to parse config for 'myplugin': Exception('error message') into: Failed to parse config for 'myplugin': error message.
This commit is contained in:
parent
1baa895310
commit
b28bfd905d
2 changed files with 2 additions and 1 deletions
1
changelog.d/8492.misc
Normal file
1
changelog.d/8492.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Clarify error message when plugin config parsers raise an error.
|
|
@ -36,7 +36,7 @@ def load_module(provider):
|
||||||
try:
|
try:
|
||||||
provider_config = provider_class.parse_config(provider.get("config"))
|
provider_config = provider_class.parse_config(provider.get("config"))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise ConfigError("Failed to parse config for %r: %r" % (provider["module"], e))
|
raise ConfigError("Failed to parse config for %r: %s" % (provider["module"], e))
|
||||||
|
|
||||||
return provider_class, provider_config
|
return provider_class, provider_config
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue