Not sure if there’s a debug mode I should be investigating this within - but after updating to .30 from .28, any automation which is triggered with the Sun platform causes HASS to fail to load/parse the config at start.
Nothing is written to the log, either - and malforming or removing the automations allow HASS to boot fine. Also tried tweaking (and outright removing) all of my lat/long settings in the configuration.yaml
These automations all worked fine prior to the update - here’s an example of two that will crash HASS:
- alias: 'entry_lights_sunset'
trigger:
platform: sun
event: sunset
offset: "-02:00:00"
action:
service: scene.turn_on
entity_id: scene.living_on
- alias: 'entry_lights_sunrise'
trigger:
platform: sun
event: sunrise
offset: "-02:00:00"
action:
service: scene.turn_on
entity_id: scene.living_off
HASS will crash either around loading the sun component or when loading my scenes - kind of varies. Tried renaming them, testing different actions - tried adding conditions, nothing works. I have at least a dozen other automations that work fine - but it’s any that use the sun component that cause the whole thing to fail.