mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 04:50:05 +00:00
bugfix: ensure the google_assistant component respects allow_unlock (#18874)
The `Config` object specific to the `google_assistant` component had a default value for `allow_unlock`. We were not overriding this default when constructing the Config object during `google_assistant` component setup, whereas we do when setting up the `cloud` component. To fix, we thread the `allow_unlock` parameter down through http setup, and ensure that it's set correctly. Moreover, we also change the ordering of the `Config` parameters, and remove the default. Future refactoring should not miss it, as it is now a required parameter.
This commit is contained in:
committed by
Paulus Schoutsen
parent
a62fc7ca04
commit
b7e2522083
@@ -25,6 +25,7 @@ from tests.common import async_mock_service
|
||||
|
||||
BASIC_CONFIG = helpers.Config(
|
||||
should_expose=lambda state: True,
|
||||
allow_unlock=False,
|
||||
agent_user_id='test-agent',
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user