Detected code that calls async_forward_entry_setup for integration ge_home during setup without awaiting async_forward_entry_setup, which can cause the setup lock to be released before the setup is done. This will stop working in Home Assistant 2025.1. Please report this issue.
By adding await before self.hass.config_entries.async_forward_entry_setup, you ensure that the call is properly awaited, preventing the setup lock issue.
Detected code that calls async_forward_entry_setup for integration ge_home during setup without awaiting async_forward_entry_setup, which can cause the setup lock to be released before the setup is done. This will stop working in Home Assistant 2025.1. Please report this issue.
By adding await before self.hass.config_entries.async_forward_entry_setup, you ensure that the call is properly awaited, preventing the setup lock issue.