Set parallel updates in Elgato (#132998)

This commit is contained in:
Franck Nijhof 2024-12-12 09:53:26 +01:00 committed by GitHub
parent 053f03ac58
commit 85d4c48d6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View File

@ -22,6 +22,8 @@ from . import ElgatorConfigEntry
from .coordinator import ElgatoDataUpdateCoordinator
from .entity import ElgatoEntity
PARALLEL_UPDATES = 1
@dataclass(frozen=True, kw_only=True)
class ElgatoButtonEntityDescription(ButtonEntityDescription):

View File

@ -30,10 +30,7 @@ rules:
entity-unavailable: done
integration-owner: done
log-when-unavailable: done
parallel-updates:
status: todo
comment: |
Does not set parallel-updates on button/switch action calls.
parallel-updates: done
reauthentication-flow:
status: exempt
comment: |

View File

@ -18,6 +18,8 @@ from . import ElgatorConfigEntry
from .coordinator import ElgatoData, ElgatoDataUpdateCoordinator
from .entity import ElgatoEntity
PARALLEL_UPDATES = 1
@dataclass(frozen=True, kw_only=True)
class ElgatoSwitchEntityDescription(SwitchEntityDescription):