Update caldav to use async_add_executor_job ()

self.calendar.date_search was already being run in the executor in
other places so this should be safe
pull/41826/head
J. Nick Koston 2020-10-14 01:18:23 -05:00 committed by GitHub
parent b9d34603e4
commit cdd17b4215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
homeassistant/components/caldav

View File

@ -167,7 +167,7 @@ class WebDavCalendarData:
async def async_get_events(self, hass, start_date, end_date):
"""Get all events in a specific time frame."""
# Get event list from the current calendar
vevent_list = await hass.async_add_job(
vevent_list = await hass.async_add_executor_job(
self.calendar.date_search, start_date, end_date
)
event_list = []