Migrate dispatcher to create tasks eagerly (#112845)

There were quite a few of these that never had to suspend.
This commit is contained in:
J. Nick Koston 2024-03-11 08:58:45 -10:00 committed by GitHub
parent d7cc30fd2b
commit 89c24b2f75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -225,4 +225,4 @@ def async_dispatcher_send(
if job is None:
job = _generate_job(signal, target)
target_list[target] = job
hass.async_run_hass_job(job, *args)
hass.async_run_hass_job(job, *args, eager_start=True)