Skip to content

Commit

Permalink
Set PARALLEL_UPDATES for incomfort entity platforms (#134110)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouwh authored Dec 27, 2024
1 parent da531d0 commit 263e0ac
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions homeassistant/components/incomfort/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from .coordinator import InComfortDataCoordinator
from .entity import IncomfortBoilerEntity

PARALLEL_UPDATES = 0


@dataclass(frozen=True, kw_only=True)
class IncomfortBinarySensorEntityDescription(BinarySensorEntityDescription):
Expand Down
2 changes: 2 additions & 0 deletions homeassistant/components/incomfort/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
from .coordinator import InComfortDataCoordinator
from .entity import IncomfortEntity

PARALLEL_UPDATES = 1


async def async_setup_entry(
hass: HomeAssistant,
Expand Down
2 changes: 2 additions & 0 deletions homeassistant/components/incomfort/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
from .coordinator import InComfortDataCoordinator
from .entity import IncomfortBoilerEntity

PARALLEL_UPDATES = 0


@dataclass(frozen=True, kw_only=True)
class IncomfortSensorEntityDescription(SensorEntityDescription):
Expand Down
2 changes: 2 additions & 0 deletions homeassistant/components/incomfort/water_heater.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

HEATER_ATTRS = ["display_code", "display_text", "is_burning"]

PARALLEL_UPDATES = 0


async def async_setup_entry(
hass: HomeAssistant,
Expand Down

0 comments on commit 263e0ac

Please sign in to comment.