mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 03:37:51 +00:00

* Add async_schedule_reload helper to the ConfigEntries manager We have cases where the the setup retry kicks in right before the reload happens causing the reload to fail with OperationNotAllowed. The async_schedule_reload will cancel the setup retry before the async_reload task is created to avoid this problem. I updated a few integrations that were most likely to have this problem. Future PRs will do a more extensive audit * coverage * revert for now since this needs more refactoring in a followup * cover * cleanup and fixes