From aeab05eae7719a6d61a18718b25855974735d1bc Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 10 Jul 2022 02:06:34 -0500 Subject: [PATCH] Fix typo in Waiting for config entry platforms (#1391) --- blog/2022-07-08-config_entry_forwards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/2022-07-08-config_entry_forwards.md b/blog/2022-07-08-config_entry_forwards.md index 9a986c71..f28aedba 100644 --- a/blog/2022-07-08-config_entry_forwards.md +++ b/blog/2022-07-08-config_entry_forwards.md @@ -6,6 +6,6 @@ title: "Waiting for config entry platforms" Before 2022.8, it was impossible to `await` config entry platforms forwards without a deadlock if one of the platforms loaded by the config entry was not already loaded. -Integrations need to be refactored to replace calls to `hass.config_entries.async_setup_platforms` with `hass.config_entries.async_forward_entry_setups` and/or await all `hass.config_entries.async_forward_entry_setup` to ensure that Home Assistant does not inadventantly reload the integration while entities and platforms are still being set up. +Integrations need to be refactored to replace calls to `hass.config_entries.async_setup_platforms` with `hass.config_entries.async_forward_entry_setups` and/or await all `hass.config_entries.async_forward_entry_setup` to ensure that Home Assistant does not inadvertently reload the integration while entities and platforms are still being set up. `hass.config_entries.async_setup_platforms` is scheduled to be removed in 2022.12. \ No newline at end of file