mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Add parallel updates to SamsungTV (#142403)
This commit is contained in:
parent
e96f2f06fb
commit
bea389eed7
@ -59,6 +59,9 @@ SUPPORT_SAMSUNGTV = (
|
|||||||
# Max delay waiting for app_list to return, as some TVs simply ignore the request
|
# Max delay waiting for app_list to return, as some TVs simply ignore the request
|
||||||
APP_LIST_DELAY = 3
|
APP_LIST_DELAY = 3
|
||||||
|
|
||||||
|
# Coordinator is used to centralize the data updates
|
||||||
|
PARALLEL_UPDATES = 0
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
|
@ -13,6 +13,9 @@ from .const import LOGGER
|
|||||||
from .coordinator import SamsungTVConfigEntry
|
from .coordinator import SamsungTVConfigEntry
|
||||||
from .entity import SamsungTVEntity
|
from .entity import SamsungTVEntity
|
||||||
|
|
||||||
|
# Coordinator is used to centralize the data updates
|
||||||
|
PARALLEL_UPDATES = 0
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user