Change PARALLEL_UPDATES to 0 for read-only NextDNS platforms (#146939)

Change PARALLEL_UPDATES to 0 for read-only platforms
This commit is contained in:
Maciej Bieniek 2025-06-16 14:11:48 +02:00 committed by GitHub
parent 3283965b45
commit e47e2c92fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ from homeassistant.helpers.update_coordinator import CoordinatorEntity
from . import NextDnsConfigEntry
from .coordinator import NextDnsUpdateCoordinator
PARALLEL_UPDATES = 1
PARALLEL_UPDATES = 0
@dataclass(frozen=True, kw_only=True)

View File

@ -35,7 +35,7 @@ from .const import (
)
from .coordinator import CoordinatorDataT, NextDnsUpdateCoordinator
PARALLEL_UPDATES = 1
PARALLEL_UPDATES = 0
@dataclass(frozen=True, kw_only=True)