Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't mutate config in the check_config helper #104241

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions homeassistant/helpers/check_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ async def _get_integration(
config_schema = getattr(component, "CONFIG_SCHEMA", None)
if config_schema is not None:
try:
config = config_schema(config)
validated_config = config_schema(config)
# Don't fail if the validator removed the domain from the config
if domain in config:
result[domain] = config[domain]
if domain in validated_config:
result[domain] = validated_config[domain]
except vol.Invalid as ex:
_comp_error(ex, domain, config, config[domain])
continue
Expand Down