Remove blocking I/O from the event loop (#28305)
This commit is contained in:
parent
0e4331e922
commit
a0f764cf6d
5 changed files with 5 additions and 5 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue