Component unable to load after upgrading to v1.9.13
See original GitHub issueI’ve been banging my head against the wall for a few days. v1.9.12 works fine when I downgrade, however upgrading to v1.9.13 produces the following logs on start up and the integration remains in a “Not Loaded” state.
Errors on startup:
Setup failed for custom integration google_home: Unable to import component: Exception importing custom_components.google_home
This error originated from a custom integration.
Logger: homeassistant.loader
Source: custom_components/google_home/api.py:11
Integration: Google Home (documentation, issues)
First occurred: 12:22:46 PM (88 occurrences)
Last logged: 12:25:01 PM
Unexpected exception importing component custom_components.google_home
Unexpected exception importing platform custom_components.google_home.config_flow
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/loader.py", line 599, in get_component
cache[self.domain] = importlib.import_module(self.pkg_path)
File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/config/custom_components/google_home/__init__.py", line 17, in <module>
from .api import GlocaltokensApiClient
File "/config/custom_components/google_home/api.py", line 11, in <module>
from glocaltokens.client import Device, GLocalAuthenticationTokens
File "/usr/local/lib/python3.9/site-packages/glocaltokens/client.py", line 24, in <module>
from .google.internal.home.foyer.v1_pb2 import GetHomeGraphRequest, GetHomeGraphResponse
File "/usr/local/lib/python3.9/site-packages/glocaltokens/google/internal/home/foyer/v1_pb2.py", line 24, in <module>
_GETASSISTANTROUTINESREQUEST = DESCRIPTOR.message_types_by_name[
KeyError: 'GetAssistantRoutinesRequest'
Logger: homeassistant.config_entries
Source: config_entries.py:749
First occurred: 12:23:21 PM (87 occurrences)
Last logged: 12:25:01 PM
Error occurred loading configuration flow for integration google_home: Exception importing custom_components.google_home.config_flow
I tried removing the integration and reinstalling, but I need to downgrade to v.1.9.12 and then remove the integration before trying to setup again. If I attempt to setup on v.1.9.13 I receive an error about the integration being unable to be setup in the UI.
One thing to note, I do also use the google wifi integration which I know has caused issues in the past. Any ideas?
Issue Analytics
- State:
- Created a year ago
- Comments:18 (2 by maintainers)
Top Results From Across the Web
Could not reach Cloud Firestore backend after upgrading to ...
I just tried v9.6.4 in -ca , but I'm getting a strange Component app-check has not been registered yet error after deploying there ......
Read more >Standalone Sentry 9.13.0 Release and Upgrade Notes
Ivanti recommends upgrading the failed servers to support TLS v1.2. After upgrading to 9.7.0, use the tlscheck command from the Standalone ...
Read more >Cisco Firepower Release Notes, Version 6.6 - Security
After upgrade FMC from 6409-59 to 6.6.0-90 unable to log UI using Radius external user in subdomain. CSCvu38869. The jQuery framework exchanges ...
Read more >Bug listing with status RESOLVED with resolution FIXED as at ...
... Bug:456 - "kdm fails to load" status:RESOLVED resolution:FIXED severity: ... Bug:512 - "Evolution's ldap component dies when a new entry is attempted" ......
Read more >VMware Tanzu Application Service for VMs v2.9 Release Notes
0.1 or earlier, do not upgrade to this patch. The stemcell in this patch is not compatible with the NCP tile v3.0.1 and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I guess the issue is
google-wifi
also has generated bindings for the same proto file. Protobuf has global buffer and different versions of these generated files cause issues.The proper way to fix this is to extract generated files to the external package and use it both in
glocaltokens
andgoogle-wifi
. This way both integrations will use exactly the same version of these files. Not sure I have time for this.Quick fix will be reverting my recent update and try not to touch these files again.
I spoke too soon. After testing with 5 restarts and google_home loading fine for all 5, #6 google_home would not load with same error.