Remove blocking I/O from the event loop (#28305)

This commit is contained in:
Sebastian Muszynski 2019-10-29 01:44:26 +01:00 committed by Teemu R
parent 0e4331e922
commit a0f764cf6d
5 changed files with 5 additions and 5 deletions

View file

@ -88,7 +88,7 @@ async def async_setup_platform(hass, config, async_add_entities, discovery_info=
# Check that we can communicate with device.
try:
device_info = device.info()
device_info = await hass.async_add_executor_job(device.info)
model = device_info.model
unique_id = f"{model}-{device_info.mac_address}"
_LOGGER.info(