You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've made a comment over on issue #231 about how I've been running into the "no alarms/timers" fairly sporadically; it seems to be a 50/50 shot whether it happens or not.
Sometimes, glocaltokens returns None for an IP address for a Google device. When this happens, it seems as if the timers will never be updated for that device. Other times, it will time out but then be able to resolve itself on a retry ~3 minutes later.
The Google devices are all set to use dynamic IPs. @leikoilja mentioned that setting them to use static IPs and implementing #340 may resolve the issue, which I agree with. They also mentioned that the timeouts may be due to an API limitation, also seen in #202.
2021-11-11 23:07:23 DEBUG (SyncWorker_9) [glocaltokens.client] [Device - Garage Speaker(id=54115606-7a0e-4fb2-a4c3-28355fcc5dc2)] Initializing new Device instance
2021-11-11 23:07:23 DEBUG (SyncWorker_9) [glocaltokens.client] [Device - Garage Speaker(id=54115606-7a0e-4fb2-a4c3-28355fcc5dc2)] Set device_name to "Garage Speaker", local_auth_token to "h***********************************************************************************************************", IP to "None", PORT to "None" and hardware to "Google Home Mini"
<snip>
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Bedroom display. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Guest Bathroom Speaker. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Living Room TV. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Garage Speaker. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Michelle's Office. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Bedroom Wifi. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Bathroom Speaker. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Office TV. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Living Room WiFi. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Family Room TV. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Failed to fetch timers/alarms information from device Office speaker. We could not determine its IP address, the device is either offline or is not compatible Google Home device. Will try again later.
2021-11-11 23:07:24 DEBUG (MainThread) [custom_components.google_home] Finished fetching sensor data in 5.977 seconds (success: True)
When it does work, I get a bunch of timeouts on the first boot:
Garage Speaker device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Garage Speaker
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Garage Speaker - https://192.168.86.35:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Bedroom display device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Bedroom display
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Bedroom display - https://192.168.86.24:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Guest Bathroom Speaker device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Guest Bathroom Speaker
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Guest Bathroom Speaker - https://192.168.86.45:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Bedroom Wifi device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Bedroom Wifi
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Bedroom Wifi - https://192.168.86.249:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Michelle's Office device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Michelle's Office
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Michelle's Office - https://192.168.86.29:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Living Room WiFi device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Living Room WiFi
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Living Room WiFi - https://192.168.86.21:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Office TV device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Office TV
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Office TV - https://192.168.86.37:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Family Room TV device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Family Room TV
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Family Room TV - https://192.168.86.234:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Office speaker device timed out while performing a request to it - Raw data: None
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Office speaker
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Office speaker - https://192.168.86.39:8443/setup/assistant/alarms/volume
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Guest Bathroom Speaker - Volume: 100(raw=1.0)
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Guest Bathroom Speaker
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Guest Bathroom Speaker - https://192.168.86.45:8443/setup/assistant/notifications
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Garage Speaker - Volume: 71(raw=0.7142857313156128)
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Garage Speaker
2021-11-11 23:17:45 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Garage Speaker - https://192.168.86.35:8443/setup/assistant/notifications
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Office TV, API returned 404. The device(hardware='Chromecast Ultra') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Office TV
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Office TV - https://192.168.86.37:8443/setup/assistant/notifications
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Bedroom Wifi - Volume: 67(raw=0.6666666865348816)
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Bedroom Wifi
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Bedroom Wifi - https://192.168.86.249:8443/setup/assistant/notifications
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Guest Bathroom Speaker - Enabled: False
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Living Room WiFi - Volume: 67(raw=0.6666666865348816)
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Living Room WiFi
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Living Room WiFi - https://192.168.86.21:8443/setup/assistant/notifications
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Office TV, API returned 404. The device(hardware='Chromecast Ultra') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Garage Speaker - Enabled: False
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Bedroom Wifi - Enabled: False
2021-11-11 23:17:46 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Living Room WiFi - Enabled: False
But then after a few minutes it tries again with more success:
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Bedroom display - https://192.168.86.24:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Guest Bathroom Speaker - https://192.168.86.45:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Garage Speaker - https://192.168.86.35:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Michelle's Office - https://192.168.86.29:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Bedroom Wifi - https://192.168.86.249:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Office TV - https://192.168.86.37:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Living Room WiFi - https://192.168.86.21:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Family Room TV - https://192.168.86.234:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms for Google Home device Office speaker - https://192.168.86.39:8443/setup/assistant/alarms
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Family Room TV, API returned 404. The device(hardware='Chromecast') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Family Room TV
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Family Room TV - https://192.168.86.234:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Family Room TV, API returned 404. The device(hardware='Chromecast') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Family Room TV
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Family Room TV - https://192.168.86.234:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Office TV, API returned 404. The device(hardware='Chromecast Ultra') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Office TV
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Office TV - https://192.168.86.37:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Family Room TV, API returned 404. The device(hardware='Chromecast') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Office TV, API returned 404. The device(hardware='Chromecast Ultra') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Office TV
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Office TV - https://192.168.86.37:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Failed to perform request to Office TV, API returned 404. The device(hardware='Chromecast Ultra') is possibly not Google Home compatible and has no alarms/timers. Will retry later.
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Living Room WiFi. Response: {'alarm': [], 'timer': [{'fire_time': 1636704340000.0, 'id': 'timer/618d122c-0000-2866-92b0-f072ea096828', 'original_duration': 3600000.0, 'status': 1}]}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Living Room WiFi
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Living Room WiFi - https://192.168.86.21:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Guest Bathroom Speaker. Response: {'alarm': [], 'timer': []}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Guest Bathroom Speaker
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Guest Bathroom Speaker - https://192.168.86.45:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Bedroom Wifi. Response: {'alarm': [], 'timer': []}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Bedroom Wifi
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Bedroom Wifi - https://192.168.86.249:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Garage Speaker. Response: {'alarm': [], 'timer': []}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Garage Speaker
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Garage Speaker - https://192.168.86.35:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Living Room WiFi - Volume: 67(raw=0.6666666865348816)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Living Room WiFi
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Living Room WiFi - https://192.168.86.21:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Bedroom Wifi - Volume: 67(raw=0.6666666865348816)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Bedroom Wifi
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Bedroom Wifi - https://192.168.86.249:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Guest Bathroom Speaker - Volume: 100(raw=1.0)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Guest Bathroom Speaker
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Guest Bathroom Speaker - https://192.168.86.45:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Living Room WiFi - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Garage Speaker - Volume: 71(raw=0.7142857313156128)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Garage Speaker
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Garage Speaker - https://192.168.86.35:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Bedroom Wifi - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Guest Bathroom Speaker - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Garage Speaker - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Michelle's Office. Response: {'alarm': [], 'timer': []}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Michelle's Office
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Michelle's Office - https://192.168.86.29:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Michelle's Office - Volume: 72(raw=0.7200000286102295)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Michelle's Office
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Michelle's Office - https://192.168.86.29:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Bedroom display. Response: {'alarm': [], 'timer': []}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Bedroom display
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Bedroom display - https://192.168.86.24:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Michelle's Office - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Bedroom display - Volume: 72(raw=0.7200000286102295)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Bedroom display
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Bedroom display - https://192.168.86.24:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Bedroom display - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Successfully retrieved alarms and timers from Office speaker. Response: {'alarm': [], 'timer': [{'fire_time': 1636704336497.0, 'id': 'timer/e3a8c164-a690-fd08-6dbc-e9a26659b180', 'original_duration': 3600000.0, 'status': 1}]}
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting alarm volume from Google Home device Office speaker
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/alarms/volume for Google Home device Office speaker - https://192.168.86.39:8443/setup/assistant/alarms/volume
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received alarm volume from Google Home device Office speaker - Volume: 43(raw=0.4333333373069763)
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Getting Do Not Disturb setting from Google Home device Office speaker
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Requesting endpoint setup/assistant/notifications for Google Home device Office speaker - https://192.168.86.39:8443/setup/assistant/notifications
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Received Do Not Disturb setting from Google Home device Office speaker - Enabled: False
2021-11-11 23:20:49 DEBUG (MainThread) [custom_components.google_home] Finished fetching sensor data in 0.335 seconds (success: True)
The text was updated successfully, but these errors were encountered:
Describe the bug
I've made a comment over on issue #231 about how I've been running into the "no alarms/timers" fairly sporadically; it seems to be a 50/50 shot whether it happens or not.
Sometimes,
glocaltokens
returnsNone
for an IP address for a Google device. When this happens, it seems as if the timers will never be updated for that device. Other times, it will time out but then be able to resolve itself on a retry ~3 minutes later.The Google devices are all set to use dynamic IPs. @leikoilja mentioned that setting them to use static IPs and implementing #340 may resolve the issue, which I agree with. They also mentioned that the timeouts may be due to an API limitation, also seen in #202.
Version of the integration
If you are unsure about the version check the github release here.
(Through HACS)
Logs
When it does work, I get a bunch of timeouts on the first boot:
But then after a few minutes it tries again with more success:
The text was updated successfully, but these errors were encountered: