Set parallel updates in NUT (#141225)

This commit is contained in:
tdfountain 2025-03-23 12:35:58 -07:00 committed by GitHub
parent e2f7133d00
commit 56cb54588e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 0 deletions

View File

@ -17,6 +17,8 @@ from .entity import NUTBaseEntity
_LOGGER = logging.getLogger(__name__)
PARALLEL_UPDATES = 0
async def async_setup_entry(
hass: HomeAssistant,

View File

@ -30,6 +30,9 @@ from . import NutConfigEntry
from .const import KEY_STATUS, KEY_STATUS_DISPLAY, STATE_TYPES
from .entity import NUTBaseEntity
# Coordinator is used to centralize the data updates
PARALLEL_UPDATES = 0
AMBIENT_PRESENT = "ambient.present"
AMBIENT_SENSORS = {
"ambient.humidity",

View File

@ -18,6 +18,8 @@ from .entity import NUTBaseEntity
_LOGGER = logging.getLogger(__name__)
PARALLEL_UPDATES = 0
async def async_setup_entry(
hass: HomeAssistant,